Package-level declarations

Types

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class Bounds(@Json(name = "x") val x: Int, @Json(name = "y") val y: Int, @Json(name = "width") val width: Int, @Json(name = "height") val height: Int) : Representable

Data class representing Bounds, conforming to Representable.

Link copied to clipboard
sealed class ImageFormat

Defines the supported image formats.

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class Links(@Json(name = "self") val self: String?, @Json(name = "docs") val docs: String?) : Representable

Data class representing Links, conforming to Representable.