RecurrencePatternResponse

data class RecurrencePatternResponse(val expirationDate: String, val frequency: String, val interval: Int? = null, val weekDays: List<String>? = null)

Recurrence pattern of a lab schedule.

Constructors

Link copied to clipboard
constructor(expirationDate: String, frequency: String, interval: Int? = null, weekDays: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

When the recurrence will expire. This date is inclusive.

Link copied to clipboard

The frequency of the recurrence.

Link copied to clipboard
val interval: Int? = null

The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.

Link copied to clipboard
val weekDays: List<String>? = null

The week days the schedule runs. Used for when the Frequency is set to Weekly.