JobRecurrenceResponse

data class JobRecurrenceResponse(val count: Int? = null, val endTime: String? = null, val frequency: String? = null, val interval: Int? = null, val schedule: JobRecurrenceScheduleResponse? = null)

Constructors

Link copied to clipboard
constructor(count: Int? = null, endTime: String? = null, frequency: String? = null, interval: Int? = null, schedule: JobRecurrenceScheduleResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val count: Int? = null

Gets or sets the maximum number of times that the job should run.

Link copied to clipboard
val endTime: String? = null

Gets or sets the time at which the job will complete.

Link copied to clipboard
val frequency: String? = null

Gets or sets the frequency of recurrence (second, minute, hour, day, week, month).

Link copied to clipboard
val interval: Int? = null

Gets or sets the interval between retries.

Link copied to clipboard