UserSignUpProps
Properties for creating a new user.
interface UserSignUpProps extends BaseProps {
firstName: string;
lastName: string;
password: string;
titleCode?: string;
uid: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
firstName | Required | string | First name of the user. {string} UserSignUp |
lastName | Required | string | Last name of the user. {string} UserSignUp |
password | Required | string | User password. {string} UserSignUp |
titleCode | Optional | string | User title, one of the those defined in SAP (e.g. mr). {string} UserSignUp |
uid | Required | string | Unique identifier of a user (e.g. an email address). {string} UserSignUp |