Type alias RegistrationDetails

RegistrationDetails: {
    additionalData?: {
        [k: string]: any;
    };
    email?: string;
    nameFirst?: string;
    nameLast?: string;
    password: string;
    password2: string;
    phone?: string;
    username: string;
    usernameVerified: boolean;
}

Type declaration

  • Optional additionalData?: {
        [k: string]: any;
    }

    Additional data to be included in the request.

    • [k: string]: any
  • Optional email?: string

    The new user's email address.

  • Optional nameFirst?: string

    The new user's given name.

  • Optional nameLast?: string

    The new user's surname.

  • password: string

    New user's password.

  • password2: string

    Repeat the password.

  • Optional phone?: string

    The new user's phone number.

  • username: string

    New user's username.

  • usernameVerified: boolean

    Whether the username passed verification.

Generated using TypeDoc