Thumbnail

@Serializable
data class Thumbnail(val height: Int?, val width: Int?, val prefix: String, val bw: Int, val bh: Int)

Data class representing a thumbnail resolution.

Constructors

Link copied to clipboard
constructor(height: Int?, width: Int?, prefix: String, bw: Int, bh: Int)

Properties

Link copied to clipboard
val bh: Int

The requested height, in pixels.

Link copied to clipboard
val bw: Int

The requested width, in pixels.

Link copied to clipboard
val height: Int?

The height of the thumbnail, in pixels. (Nullable)

Link copied to clipboard

The prefix of the thumbnail. (NonNull)

Link copied to clipboard
val width: Int?

The width of the thumbnail, in pixels. (Nullable)