ResetInfo

Properties

key: string;

account key in the realm. (configured 'unique key' used for authentication)

token: string;

Server-provided temporary token to reset a password

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
interface ResetInfo {

  /**
   * account key in the realm. (configured 'unique key' used for authentication)
   */
  key: string;

  /**
   * Server-provided temporary token to reset a password
   */
  token: string;

}