UserData

User data used to manage an user

Members

Variables

_id
string _id;

The user id

email
string email;
isActive
bool isActive;

Flag used to determine if the user can perform any actions

name
string name;
password
string password;
salt
string salt;
scopes
string[] scopes;

Scopes that the user has access to

tokens
Token[] tokens;

A list of active tokens

username
string username;

Meta