ThumbnailInfo

@Serializable
data class ThumbnailInfo(val width: Int? = null, val height: Int? = null, val mimeType: String? = null, val size: Long? = null)

Constructors

Link copied to clipboard
constructor(width: Int? = null, height: Int? = null, mimeType: String? = null, size: Long? = null)

Properties

Link copied to clipboard
@SerialName(value = "h")
val height: Int?
Link copied to clipboard
@SerialName(value = "mimetype")
val mimeType: String?
Link copied to clipboard
@SerialName(value = "size")
val size: Long?
Link copied to clipboard
@SerialName(value = "w")
val width: Int?