MSALNativeAuthChallengeTypes
Objective-C
enum MSALNativeAuthChallengeTypes : NSInteger {}Swift
struct MSALNativeAuthChallengeTypes : OptionSet, @unchecked SendableThe set of challenge types that an application wishes to support for Native Auth operations.
Valid options are:
- OOB: The application can support asking a user to supply a verification code that is sent by email.
- Password: The application can support asking a user to supply a password
- 
                  
                  Specifies if the Challenge Type is OOB DeclarationObjective-C MSALNativeAuthChallengeTypeOOB = 1 << 0Swift static var OOB: MSALNativeAuthChallengeTypes { get }
- 
                  
                  Specifies if the Challenge Type is Password DeclarationObjective-C MSALNativeAuthChallengeTypePassword = 1 << 1Swift static var password: MSALNativeAuthChallengeTypes { get }
 View on GitHub
            View on GitHub
          