LabelCreateRequest

public struct LabelCreateRequest : Codable
  • 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(orgID: String, name: String, properties: [String : String]? = nil)