TaskProgressPayload

@Serializable
data class TaskProgressPayload(val progress: Float, val stage: String? = null, val message: String? = null)

Structured payload for TASK_PROGRESS events.

Constructors

Link copied to clipboard
constructor(progress: Float, stage: String? = null, message: String? = null)

Properties

Link copied to clipboard

Optional human-readable message.

Link copied to clipboard

Percentage of completion (0 to 100).

Link copied to clipboard

Optional identifier for the current processing stage.