Attempt Response
data class AttemptResponse(val dispatchTime: String, val responseStatus: StatusResponse, val responseTime: String, val scheduleTime: String)
The status of a task attempt.
Constructors
Link copied to clipboard
constructor(dispatchTime: String, responseStatus: StatusResponse, responseTime: String, scheduleTime: String)
Properties
Link copied to clipboard
The time that this attempt was dispatched. dispatch_time
will be truncated to the nearest microsecond.
Link copied to clipboard
The response from the worker for this attempt. If response_time
is unset, then the task has not been attempted or is currently running and the response_status
field is meaningless.
Link copied to clipboard
The time that this attempt response was received. response_time
will be truncated to the nearest microsecond.
Link copied to clipboard
The time that this attempt was scheduled. schedule_time
will be truncated to the nearest microsecond.