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.

Instance fields

Constructors

  • 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.

Tag state methods

  • Retrieves whether the union’s current tag state has value “apple_oauth”.

    Declaration

    Objective-C

    - (BOOL)isAppleOauth;

    Swift

    func isAppleOauth() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> Bool

    Return 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() -> String

    Return Value

    A human-readable string representing the union’s current tag state.