ImageInfo

@Serializable
data class ImageInfo(val imageType: ImageType, val imageIndex: Int? = null, val imageTag: String? = null, val path: String? = null, val blurHash: String? = null, val height: Int? = null, val width: Int? = null, val size: Long)

Class ImageInfo.

Constructors

Link copied to clipboard
constructor(imageType: ImageType, imageIndex: Int? = null, imageTag: String? = null, path: String? = null, blurHash: String? = null, height: Int? = null, width: Int? = null, size: Long)

Properties

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

The blurhash.

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

The height.

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

The index of the image.

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

The image tag.

Link copied to clipboard
@SerialName(value = "ImageType")
val imageType: ImageType

The type of the image.

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

The path.

Link copied to clipboard
@SerialName(value = "Size")
val size: Long

The size.

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

The width.