OpenAiImageRaw

@Serializable
data class OpenAiImageRaw(val b64json: String? = null, val url: String? = null, val revisedPrompt: String? = null)(source)

Carries OpenAiImageRaw data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(b64json: String? = null, url: String? = null, revisedPrompt: String? = null)

Properties

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

Exposes the b64json value used by the SDAI network layer.

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

Exposes the revisedPrompt value used by the SDAI network layer.

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

Exposes the url value used by the SDAI network layer.