PropertyBag

@JsonClass(generateAdapter = true)
data class PropertyBag(@Json(name = "tags") val tags: List<String>? = null)

Key/value pairs.

Constructors

Link copied to clipboard
fun PropertyBag(@Json(name = "tags") tags: List<String>? = null)

Properties

Link copied to clipboard
val tags: List<String>? = null

A set of distinct strings that provide additional information.

Sources

Link copied to clipboard