FalAiQueueSubmitResponse

@Serializable
data class FalAiQueueSubmitResponse(val requestId: String? = null, val status: String? = null, val responseUrl: String? = null, val statusUrl: String? = null, val cancelUrl: String? = null)(source)

Carries FalAiQueueSubmitResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(requestId: String? = null, status: String? = null, responseUrl: String? = null, statusUrl: String? = null, cancelUrl: String? = null)

Properties

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

Exposes the cancelUrl 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.

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

Exposes the statusUrl value used by the SDAI network layer.