ScimMultiValuedAttribute

public class ScimMultiValuedAttribute : Codable

Undocumented

Attributes.

  • A label indicating the attribute’s function, e.g., “work” or “home”.

    Declaration

    Swift

    public var type: String
  • The attribute’s significant value, e.g., email address, phone number.

    Declaration

    Swift

    public var value: String
  • A Boolean value indicating the ‘primary’ or preferred attribute value for this attribute, e.g., the preferred mailing address or the primary email address. The primary attribute value “true” MUST appear no more than once. If not specified, the value of “primary” SHALL be assumed to be “false”.

    Declaration

    Swift

    public var primary: Bool?
  • A human-readable name, primarily used for display purposes and having a mutability of “immutable”.

    Declaration

    Swift

    public var display: String?

Initializers.

Codable methods.

  • Declaration

    Swift

    public required init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws