ExistenceCheck

Properties

key: string;

User key within the realm

softFail: boolean;

Whether to fail is the user does not exist. When true, fails silently.

Source

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

  /**
   * User key within the realm
   */
  key: string;

  /**
   * Whether to fail is the user does not exist. When true, fails silently.
   */
  softFail: boolean;

}