Skip to main content
Interface defining the available methods and properties for the mfa-country-codes screen
Example
export interface MfaCountryCodesMembers extends BaseMembers {
  screen: ScreenMembersOnMfaCountryCodes;
  /**
   * Selects a country code from the available options
   * @param payload The options containing the country code selection action
   */
  selectCountryCode(payload: SelectCountryCodeOptions): Promise<void>;
  /**
   * Navigates back to the previous screen
   * @param payload Optional custom options to include with the request
   */
  goBack(payload?: CustomOptions): Promise<void>;
}

Properties

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user

Methods

goBack
Promise<void>
Navigates back to the previous screen
selectCountryCode
Promise<void>
Selects a country code from the available options