Interface defining the available methods and properties for the mfa-country-codes screen
Example
Report incorrect code
Copy
Ask AI
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>;}