TaskFailedPayload

@Serializable
data class TaskFailedPayload(val code: String, val message: String, val retryable: Boolean)

Structured payload for TASK_FAILED events.

Constructors

Link copied to clipboard
constructor(code: String, message: String, retryable: Boolean)

Properties

Link copied to clipboard

Machine-readable error code.

Link copied to clipboard

Human-readable error message.

Link copied to clipboard

True if the operation can be retried by the client.