Newer Version Available

This content describes an older version of this product. View Latest

RecurringSequence Class

Represents the result of using the getRecurringAppointmentsSlots method to return a pattern of appointments that recur daily, weekly, or monthly.

Namespace

FSL

Example

This example shows the contents of a returned RecurringSequence object.

1global class RecurringAppointmentSlots {
2    global ServiceAppointment rootServiceAppointment;
3    global List<RecurringSequence> recurringSequences;
4}
5
6global class RecurringSequence {
7    global List<EncapsulatedResource> participatingResources;
8    global List<SchedulingOption> visitSchedulingOptions;
9    global List<GradeSlotResult> averageObjectivesGrades;
10    global Double sequenceScore;
11    global List<TimeInterval> firstPatternOccurrence;
12}