LocationRelationship

@Serializable
data class LocationRelationship(val description: Message? = null, val kinds: List<String>? = null, val properties: PropertyBag? = null, val target: Long)

Information about the relation of one location to another.

Constructors

Link copied to clipboard
constructor(description: Message? = null, kinds: List<String>? = null, properties: PropertyBag? = null, target: Long)

Properties

Link copied to clipboard
val description: Message? = null

A description of the location relationship.

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

A set of distinct strings that categorize the relationship. Well-known kinds include 'includes', 'isIncludedBy' and 'relevant'.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the location relationship.

Link copied to clipboard

A reference to the related location.