AuthType

public enum AuthType : String, Decodable, Encodable

The authorization type of the user

  • sms

    By sms

    Declaration

    Swift

    case sms = "Sms"
  • By time one token password

    Declaration

    Swift

    case totp = "Totp"
  • By secure password

    Declaration

    Swift

    case securePassword = "SecurePassword"
  • By emergency code

    Declaration

    Swift

    case emergency = "Emergency"
  • By push notification

    Declaration

    Swift

    case push = "Push"
  • By OAuth token

    Declaration

    Swift

    case oauthToken = "OauthToken"