ScimAddress

public class ScimAddress : ScimMultiValuedAttribute

Undocumented

  • The full mailing address, formatted for display or use with a mailing label. This attribute MAY contain newlines.

    Declaration

    Swift

    public var formatted: String?
  • The full street address component, which may include house number, street name, P.O.box, and multi- line extended street address information. This attribute MAY contain newlines.

    Declaration

    Swift

    public var streetAddress: String?
  • The city or locality component.

    Declaration

    Swift

    public var locality: String?
  • The state or region component.

    Declaration

    Swift

    public var region: String?
  • The zip code or postal code component.

    Declaration

    Swift

    public var postalCode: String?
  • The country name component.When specified, the value MUST be in ISO 3166-1 “alpha-2” code format [ISO3166]; e.g., the United States and Sweden are “US” and “SE”, respectively.

    Declaration

    Swift

    public var country: String?

Codable methods.

  • Undocumented

    Declaration

    Swift

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

    Declaration

    Swift

    public override func encode(to encoder: Encoder) throws