PhoneNumberIdentifierModel

public struct PhoneNumberIdentifierModel : Codable

A phone number.

Properties

  • The phone number in E.164 format.

    Declaration

    Swift

    public let value: String

Initializers

  • Initialize a PhoneNumberIdentifierModel structure.

    Declaration

    Swift

    public init(
        value: String
    )

    Parameters

    value

    The phone number in E.164 format.

Codable

  • Initialize a PhoneNumberIdentifierModel structure from decoder

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Encode a PhoneNumberIdentifierModel structure

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws