DBTEAMLOGLoginMethod
Objective-C
@interface DBTEAMLOGLoginMethod : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGLoginMethod : NSObject, DBSerializable, NSCopying
The LoginMethod union.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Represents the union’s current tag state.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGLoginMethodTag tag;Swift
var tag: DBTEAMLOGLoginMethodTag { get }
-
Initializes union class with tag state of “apple_oauth”.
Declaration
Objective-C
- (nonnull instancetype)initWithAppleOauth;Swift
init(appleOauth: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “first_party_token_exchange”.
Declaration
Objective-C
- (nonnull instancetype)initWithFirstPartyTokenExchange;Swift
init(firstPartyTokenExchange: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “google_oauth”.
Declaration
Objective-C
- (nonnull instancetype)initWithGoogleOauth;Swift
init(googleOauth: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “password”.
Declaration
Objective-C
- (nonnull instancetype)initWithPassword;Swift
init(password: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “qr_code”.
Declaration
Objective-C
- (nonnull instancetype)initWithQrCode;Swift
init(qrCode: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “saml”.
Declaration
Objective-C
- (nonnull instancetype)initWithSaml;Swift
init(saml: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “two_factor_authentication”.
Declaration
Objective-C
- (nonnull instancetype)initWithTwoFactorAuthentication;Swift
init(twoFactorAuthentication: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “web_session”.
Declaration
Objective-C
- (nonnull instancetype)initWithWebSession;Swift
init(webSession: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “other”.
Declaration
Objective-C
- (nonnull instancetype)initWithOther;Swift
init(other: ())Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “apple_oauth”.
Declaration
Objective-C
- (BOOL)isAppleOauth;Swift
func isAppleOauth() -> BoolReturn Value
Whether the union’s current tag state has value “apple_oauth”.
-
Retrieves whether the union’s current tag state has value “first_party_token_exchange”.
Declaration
Objective-C
- (BOOL)isFirstPartyTokenExchange;Swift
func isFirstPartyTokenExchange() -> BoolReturn Value
Whether the union’s current tag state has value “first_party_token_exchange”.
-
Retrieves whether the union’s current tag state has value “google_oauth”.
Declaration
Objective-C
- (BOOL)isGoogleOauth;Swift
func isGoogleOauth() -> BoolReturn Value
Whether the union’s current tag state has value “google_oauth”.
-
Retrieves whether the union’s current tag state has value “password”.
Declaration
Objective-C
- (BOOL)isPassword;Swift
func isPassword() -> BoolReturn Value
Whether the union’s current tag state has value “password”.
-
Retrieves whether the union’s current tag state has value “qr_code”.
Declaration
Objective-C
- (BOOL)isQrCode;Swift
func isQrCode() -> BoolReturn Value
Whether the union’s current tag state has value “qr_code”.
-
Retrieves whether the union’s current tag state has value “saml”.
Declaration
Objective-C
- (BOOL)isSaml;Swift
func isSaml() -> BoolReturn Value
Whether the union’s current tag state has value “saml”.
-
Retrieves whether the union’s current tag state has value “two_factor_authentication”.
Declaration
Objective-C
- (BOOL)isTwoFactorAuthentication;Swift
func isTwoFactorAuthentication() -> BoolReturn Value
Whether the union’s current tag state has value “two_factor_authentication”.
-
Retrieves whether the union’s current tag state has value “web_session”.
Declaration
Objective-C
- (BOOL)isWebSession;Swift
func isWebSession() -> BoolReturn Value
Whether the union’s current tag state has value “web_session”.
-
Retrieves whether the union’s current tag state has value “other”.
Declaration
Objective-C
- (BOOL)isOther;Swift
func isOther() -> BoolReturn Value
Whether the union’s current tag state has value “other”.
-
Retrieves string value of union’s current tag state.
Declaration
Objective-C
- (nonnull NSString *)tagName;Swift
func tagName() -> StringReturn Value
A human-readable string representing the union’s current tag state.
View on GitHub
DBTEAMLOGLoginMethod Class Reference