Nymph.js 1.0.0-beta.113
    Preparing search index...

    Type Alias RegistrationDetails

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

    Properties

    additionalData?: { [k: string]: any }

    Additional data to be included in the request.

    email?: string

    The new user's email address.

    nameFirst?: string

    The new user's given name.

    nameLast?: string

    The new user's surname.

    password: string

    New user's password.

    password2: string

    Repeat the password.

    phone?: string

    The new user's phone number.

    username: string

    New user's username.

    usernameVerified: boolean

    Whether the username passed verification.