Class SignupUserRequest
- Namespace
- Auth0.AuthenticationApi.Models
- Assembly
- Auth0.AuthenticationApi.dll
Represents a request to sign up a new user.
public class SignupUserRequest : UserMaintenanceRequestBase
- Inheritance
-
SignupUserRequest
- Inherited Members
- Extension Methods
Properties
FamilyName
Family name for this user.
[JsonPropertyName("family_name")]
public string FamilyName { get; set; }
Property Value
GivenName
Given name for this user.
[JsonPropertyName("given_name")]
public string GivenName { get; set; }
Property Value
Name
Name of this user.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Nickname
Nickname of this user.
[JsonPropertyName("nickname")]
public string Nickname { get; set; }
Property Value
Password
Initial password for this user.
[JsonPropertyName("password")]
public string Password { get; set; }
Property Value
PhoneNumber
The user's phone number.
[JsonPropertyName("phone_number")]
public string PhoneNumber { get; set; }
Property Value
Picture
URL to a picture of this user.
[JsonPropertyName("picture")]
public Uri Picture { get; set; }
Property Value
UserMetadata
Metadata the user has read/write access to.
[JsonPropertyName("user_metadata")]
public dynamic UserMetadata { get; set; }
Property Value
- dynamic
Username
Username of this user. Only valid if the connection requires a username.
[JsonPropertyName("username")]
public string Username { get; set; }