Skip to main content
TryAnotherMethodOptions
Example
export interface TryAnotherMethodOptions extends CustomOptions {
  /**
   * The delivery method that was initially presented or selected on the current screen.
   * This is required by the API endpoint to correctly process the 'pick-authenticator' action.
   * - `sms`: Indicates the current screen was for SMS challenge.
   * - `voice`: Indicates the current screen was for Voice challenge.
   * @type {'sms' | 'voice'}
   */
  type: 'sms' | 'voice';
}

Indexable

[key: string]: string | number | boolean | undefined

Properties

type
"sms" | "voice"
The delivery method that was initially presented or selected on the current screen. This is required by the API endpoint to correctly process the ‘pick-authenticator’ action.
  • sms: Indicates the current screen was for SMS challenge.
  • voice: Indicates the current screen was for Voice challenge.