ImageResource

@Serializable
data class ImageResource(val url: String, val width: Int? = null, val height: Int? = null)

图片资源 表示一个图片资源的信息

Parameters

url

图片 URL

width

图片宽度(像素)

height

图片高度(像素)

Constructors

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

Properties

Link copied to clipboard
val height: Int? = null
Link copied to clipboard
val url: String
Link copied to clipboard
val width: Int? = null