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
Properties
FamilyName
Family name for this user.
[JsonProperty("family_name")]
public string FamilyName { get; set; }
Property Value
GivenName
Given name for this user.
[JsonProperty("given_name")]
public string GivenName { get; set; }
Property Value
Name
Name of this user.
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Nickname
Nickname of this user.
[JsonProperty("nickname")]
public string Nickname { get; set; }
Property Value
Password
Initial password for this user.
[JsonProperty("password")]
public string Password { get; set; }
Property Value
Picture
URL to a picture of this user.
[JsonProperty("picture")]
public Uri Picture { get; set; }
Property Value
UserMetadata
Metadata the user has read/write access to.
[JsonProperty("user_metadata")]
public dynamic UserMetadata { get; set; }
Property Value
- dynamic
Username
Username of this user. Only valid if the connection requires a username.
[JsonProperty("username")]
public string Username { get; set; }