CheckPasswordResult

Properties

key: string;

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

matches: boolean;

Whether the password matches

Source

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

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

  /**
   * Whether the password matches
   */
  matches: boolean;

}