Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

UserSignUpProps

Properties for creating a new user.

export interface UserSignUpProps extends BaseProps {
	firstName: string;
	lastName: string;
	password: string;
	titleCode?: string;
	uid: string;
}

Properties

NameRequiredTypeDescription
firstNameRequiredstringFirst name of the user. {string} UserSignUp
lastNameRequiredstringLast name of the user. {string} UserSignUp
passwordRequiredstringUser password. {string} UserSignUp
titleCodeOptionalstringUser title, one of the those defined in SAP (e.g. mr). {string} UserSignUp
uidRequiredstringUnique identifier of a user (e.g. an email address). {string} UserSignUp

Referenced Types

On this page