TaskCreatedResponse

@Serializable
data class TaskCreatedResponse(val taskId: String, val status: TaskStatus, val clientRequestId: String, val deduplicated: Boolean = false)

Response from the server after a task is created.

Constructors

Link copied to clipboard
constructor(taskId: String, status: TaskStatus, clientRequestId: String, deduplicated: Boolean = false)

Properties

Link copied to clipboard

The ID provided by the client.

Link copied to clipboard

True if this task was already created for the same clientRequestId.

Link copied to clipboard

Initial status of the task.

Link copied to clipboard

The unique ID of the created task.