Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
RecurringSequence Class
Represents the result of using the getRecurringAppointmentsSlots method
to return a pattern of appointments that recur daily, weekly, or monthly.
Namespace
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}