ImageDTO

@Serializable
data class ImageDTO(val thumb: String, val small: String, val large: String)

Represents the nested image URLs. JSON: { "thumb": "...", "small": "...", "large": "..." }

Constructors

Link copied to clipboard
constructor(thumb: String, small: String, large: String)

Properties

Link copied to clipboard
@SerialName(value = "large")
val large: String
Link copied to clipboard
@SerialName(value = "small")
val small: String
Link copied to clipboard
@SerialName(value = "thumb")
val thumb: String