Image
data class Image(val url: String, val type: String, val category: String, val thumbnail: String? = null, val width: Int? = null, val height: Int? = null)
This class references an image related to an Evse in terms of a file name or url.
Parameters
url
URL from where the image data can be fetched through a web browser.
type
Image type like: gif, jpeg, png, svg.
category
Describes what the image is used for.
thumbnail
URL from where a thumbnail of the image can be fetched through a web browser.
width
Width of the full scale image.
height
Height of the full scale image.