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>; }
Show Parameters
Was this page helpful?