Skip to main content
Interface defining the available methods and properties for the mfa-otp-enrollment-qr screen
Example
export interface MfaOtpEnrollmentQrMembers extends BaseMembers {
  screen: ScreenMembersOnMfaOtpEnrollmentQr;

  /**
   * Toggles the view.
   * @param payload Optional custom options to include with the request
   */
  toggleView(payload?: CustomOptions): Promise<void>;

  /**
   * Continues with the default action.
   * @param payload Payload containing code and optional custom options
   */
  continue(payload: ContinueOptions): Promise<void>;

  /**
   * Allows trying another authentication method
   * @param payload Optional custom options to include with the request
   */
  tryAnotherMethod(payload?: CustomOptions): Promise<void>;
}

Properties

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user

Methods

continue
Promise<void>
Continues with the default action.
toggleView
Promise<void>
Toggles the view.
tryAnotherMethod
Promise<void>
Allows trying another authentication method