Table of Contents

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

Email address of the new user.

[JsonProperty("email")]
public string Email { get; set; }

Property Value

string

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

string

GivenName

Given name of this user.

[JsonProperty("given_name")]
public string GivenName { get; set; }

Property Value

string

Id

Unique identifier of the user.

public string Id { get; set; }

Property Value

string

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

string

Nickname

Nickname of this user.

[JsonProperty("nickname")]
public string Nickname { get; set; }

Property Value

string

Picture

Url to a picture of this user.

[JsonProperty("picture")]
public Uri Picture { get; set; }

Property Value

Uri

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; }

Property Value

string