Label

public struct Label : Codable
  • id

    Declaration

    Swift

    public var id: String?
  • Declaration

    Swift

    public var orgID: String?
  • Declaration

    Swift

    public var name: String?
  • Key/Value pairs associated with this label. Keys can be removed by sending an update with an empty value.

    Declaration

    Swift

    public var properties: [String : String]?
  • Declaration

    Swift

    public init(id: String? = nil, orgID: String? = nil, name: String? = nil, properties: [String : String]? = nil)