PhoneNumberStatus

public enum PhoneNumberStatus : Int

Enum describing phone number checking, used by the AccountCreator.

  • Ok

    Phone number ok.

    Declaration

    Swift

    case Ok = 1
  • Phone number too short.

    Declaration

    Swift

    case TooShort = 2
  • Phone number too long.

    Declaration

    Swift

    case TooLong = 4
  • Country code invalid.

    Declaration

    Swift

    case InvalidCountryCode = 8
  • Phone number invalid.

    Declaration

    Swift

    case Invalid = 16