ReportingDescriptorRelationship

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

Information about the relation of one reporting descriptor to another.

Constructors

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

Properties

Link copied to clipboard
val description: Message? = null

A description of the reporting descriptor relationship.

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

A set of distinct strings that categorize the relationship. Well-known kinds include 'canPrecede', 'canFollow', 'willPrecede', 'willFollow', 'superset', 'subset', 'equal', 'disjoint', 'relevant', and 'incomparable'.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the reporting descriptor reference.

Link copied to clipboard

A reference to the related reporting descriptor.