StabilityAiErrorResponse

@Serializable
data class StabilityAiErrorResponse(val id: String? = null, val name: String? = null, val message: String? = null)(source)

Carries StabilityAiErrorResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(id: String? = null, name: String? = null, message: String? = null)

Properties

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

Exposes the id value used by the SDAI network layer.

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

Exposes the message value used by the SDAI network layer.

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

Exposes the name value used by the SDAI network layer.