Task Status Response
data class TaskStatusResponse(val attemptDispatchCount: Int, val attemptResponseCount: Int, val firstAttemptStatus: AttemptStatusResponse, val lastAttemptStatus: AttemptStatusResponse)
Status of the task.
Constructors
Link copied to clipboard
constructor(attemptDispatchCount: Int, attemptResponseCount: Int, firstAttemptStatus: AttemptStatusResponse, lastAttemptStatus: AttemptStatusResponse)
Properties
Link copied to clipboard
The number of attempts dispatched. This count includes attempts which have been dispatched but haven't received a response.
Link copied to clipboard
The number of attempts which have received a response. This field is not calculated for pull tasks.
Link copied to clipboard
The status of the task's first attempt. Only dispatch_time will be set. The other AttemptStatus information is not retained by Cloud Tasks. This field is not calculated for pull tasks.
Link copied to clipboard
The status of the task's last attempt. This field is not calculated for pull tasks.