FalAiQueueStatusResponse

@Serializable
data class FalAiQueueStatusResponse(val status: String? = null, val requestId: String? = null, val responseUrl: String? = null, val queuePosition: Int? = null, val error: String? = null)(source)

Carries FalAiQueueStatusResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(status: String? = null, requestId: String? = null, responseUrl: String? = null, queuePosition: Int? = null, error: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "error")
val error: String?

Exposes the error value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "queue_position")
val queuePosition: Int?

Exposes the queuePosition value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "request_id")
val requestId: String?

Exposes the requestId value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "response_url")
val responseUrl: String?

Exposes the responseUrl value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "status")
val status: String?

Exposes the status value used by the SDAI network layer.