Interface defining the available methods and properties for the reset-password-mfa-otp-challenge screen
Example
export interface ResetPasswordMfaOtpChallengeMembers extends BaseMembers { /** * Continues with the OTP challenge using the provided code. * @param payload The options containing the code. */ continue(payload: ContinueOptions): Promise<void>; /** * Allows the user to try another MFA method. * @param payload Optional custom options to include with the request. */ tryAnotherMethod(payload?: TryAnotherMethodOptions): Promise<void>;}