OpenAiResponse

@Serializable
data class OpenAiResponse(val created: Long? = null, val data: List<OpenAiImageRaw>? = null)(source)

Carries OpenAiResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(created: Long? = null, data: List<OpenAiImageRaw>? = null)

Properties

Link copied to clipboard
@SerialName(value = "created")
val created: Long?

Exposes the created value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "data")
val data: List<OpenAiImageRaw>?

Exposes the data value used by the SDAI network layer.