Websites v4 docs v5.2.4
    Preparing search index...

    Interface RegisterResponse

    The outcome of a registration attempt: either the created user on result, or the errors that prevented creation (e.g. weak password, email already taken). Exactly one is populated; the other is null.

    interface RegisterResponse {
        errors: ModelError[] | null;
        result: UserData | null;
    }
    Index

    Properties

    Properties

    errors: ModelError[] | null
    result: UserData | null