FalAiImage

@Serializable
data class FalAiImage(val url: String? = null, val width: Int? = null, val height: Int? = null, val contentType: String? = null)(source)

Carries FalAiImage data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(url: String? = null, width: Int? = null, height: Int? = null, contentType: String? = null)

Properties

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

Exposes the contentType value used by the SDAI network layer.

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

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

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

Exposes the width value used by the SDAI network layer.