TriggerParametersResponse

data class TriggerParametersResponse(val endBy: String? = null, val interval: Int? = null, val intervalUnit: String? = null, val startFrom: String? = null, val startOn: String? = null)

The trigger parameters update for the storage task assignment execution

Constructors

Link copied to clipboard
constructor(endBy: String? = null, interval: Int? = null, intervalUnit: String? = null, startFrom: String? = null, startOn: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val endBy: String? = null

When to end task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val interval: Int? = null

Run interval of task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val intervalUnit: String? = null

Run interval unit of task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val startFrom: String? = null

When to start task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val startOn: String? = null

When to start task execution. This is an optional field when ExecutionTrigger.properties.type is 'RunOnce'; this property should not be present when ExecutionTrigger.properties.type is 'OnSchedule'