PushImageInfo

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

Parameters

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(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 = "progress")
val progress: String?
Link copied to clipboard
@SerialName(value = "progressDetail")
val progressDetail: ProgressDetail?
Link copied to clipboard
@SerialName(value = "status")
val status: String?