Class SignupUserResponse
- Namespace
- Auth0.AuthenticationApi.Models
- Assembly
- Auth0.AuthenticationApi.dll
Represents the response from signing up a new user.
public class SignupUserResponse
- Inheritance
-
SignupUserResponse
- Inherited Members
Properties
Email address of the new user.
[JsonProperty("email")]
public string Email { get; set; }
Property Value
EmailVerified
Indicates whether the email has been verified or not.
[JsonProperty("email_verified")]
public bool EmailVerified { get; set; }
Property Value
- bool
true
if the email is verified; otherwise,false
.
FamilyName
Family name of this user.
[JsonProperty("family_name")]
public string FamilyName { get; set; }
Property Value
GivenName
Given name of this user.
[JsonProperty("given_name")]
public string GivenName { get; set; }
Property Value
Id
Unique identifier of the user.
public string Id { get; set; }
Property Value
Remarks
The server can return _id
, id
or user_id
depending on various factors.
For convenience we expose it here as just one.
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
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.
[JsonProperty("username")]
public string Username { get; set; }