Table of Contents

Class UserProfileData

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record UserProfileData : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<UserProfileData>
Inheritance
UserProfileData
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }

Property Value

AdditionalProperties

Email

Email address of this user.

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

Property Value

string

EmailVerified

Whether this email address is verified (true) or unverified (false).

[JsonPropertyName("email_verified")]
public bool? EmailVerified { get; set; }

Property Value

bool?

FamilyName

Family name/last name/surname of this user.

[JsonPropertyName("family_name")]
public string? FamilyName { get; set; }

Property Value

string

GivenName

Given name/first name/forename of this user.

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

Property Value

string

Name

Name of this user.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

PhoneNumber

Phone number for this user.

[JsonPropertyName("phone_number")]
public string? PhoneNumber { get; set; }

Property Value

string

PhoneVerified

Whether this phone number is verified (true) or unverified (false).

[JsonPropertyName("phone_verified")]
public bool? PhoneVerified { get; set; }

Property Value

bool?

Username

Username of this user.

[JsonPropertyName("username")]
public string? Username { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.