SvgTemplateRendering

@Serializable
data class SvgTemplateRendering(val uri: String, val uriIntegrity: String? = null, val properties: Map<String, String>? = null)(source)

Constructors

Link copied to clipboard
constructor(uri: String, uriIntegrity: String? = null, properties: Map<String, String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "properties")
val properties: Map<String, String>? = null

An object containing properties for the SVG template. This property is REQUIRED if more than one SVG template is present, otherwise it is OPTIONAL.

Link copied to clipboard
@SerialName(value = "uri")
val uri: String

REQUIRED. A URI pointing to the SVG template.

Link copied to clipboard
@SerialName(value = "uri#integrity")
val uriIntegrity: String? = null

OPTIONAL. The value MUST be an "integrity metadata" string as defined in Section 3 of W3C.SRI. A Consumer of the respective documents MUST verify the integrity of the retrieved document as defined in Section 3.3.5 of W3C.SRI.