CreateImageInfo

@Serializable
data class CreateImageInfo(val id: String? = null, val error: String? = null, val errorDetail: ErrorDetail? = null, val status: String? = null, val progress: String? = null, val progressDetail: ProgressDetail? = null)

Parameters

id
error

errors encountered during the operation. >Deprecated: This field is deprecated since API v1.4, and will be omitted in a future API version. Use the information in errorDetail instead.

errorDetail
status
progress

Progress is a pre-formatted presentation of progressDetail. >Deprecated: This field is deprecated since API v1.8, and will be omitted in a future API version. Use the information in progressDetail instead.

progressDetail

Constructors

Link copied to clipboard
constructor(id: String? = null, error: String? = null, errorDetail: ErrorDetail? = null, status: String? = null, progress: String? = null, progressDetail: ProgressDetail? = null)

Properties

Link copied to clipboard
@SerialName(value = "error")
val error: String?
Link copied to clipboard
@SerialName(value = "errorDetail")
val errorDetail: ErrorDetail?
Link copied to clipboard
@SerialName(value = "id")
val id: String?
Link copied to clipboard
@SerialName(value = "progress")
val progress: String?
Link copied to clipboard
@SerialName(value = "progressDetail")
val progressDetail: ProgressDetail?
Link copied to clipboard
@SerialName(value = "status")
val status: String?