TypeLabel

public struct TypeLabel : Codable, Equatable

Identification of a specific type.

  • The type of modification of the feedback entry in the updated labels response.

    See more

    Declaration

    Swift

    public enum Modification : String
  • 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.

    Declaration

    Swift

    public var label: Label?
  • Hashed values that you can send to IBM to provide feedback or receive support.

    Declaration

    Swift

    public var provenanceIDs: [String]?
  • The type of modification of the feedback entry in the updated labels response.

    Declaration

    Swift

    public var modification: String?
  • Initialize a TypeLabel with member variables.

    Declaration

    Swift

    public init(
        label: Label? = nil,
        provenanceIDs: [String]? = nil,
        modification: String? = nil
    )

    Parameters

    label

    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.

    provenanceIDs

    Hashed values that you can send to IBM to provide feedback or receive support.

    modification

    The type of modification of the feedback entry in the updated labels response.

    Return Value

    An initialized TypeLabel.