Label

public struct Label : Codable, Equatable

A pair of nature and party objects. The nature object identifies the effect of the element on the identified party, and the party object identifies the affected party.

  • The identified nature of the element.

    Declaration

    Swift

    public var nature: String
  • The identified party of the element.

    Declaration

    Swift

    public var party: String
  • Initialize a Label with member variables.

    Declaration

    Swift

    public init(
        nature: String,
        party: String
    )

    Parameters

    nature

    The identified nature of the element.

    party

    The identified party of the element.

    Return Value

    An initialized Label.