ConfirmForgotPasswordResponse
Package: @nauth-toolkit/client
Type: Response
Response payload for confirming a forgot-password reset.
import { ConfirmForgotPasswordResponse } from '@nauth-toolkit/client';
Properties
| Property | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Whether the reset completed successfully. |
mustChangePassword | boolean | Yes | Always false for this flow. |
Example
{
"success": true,
"mustChangePassword": false
}