Class GetUserResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetUserResponseContent : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<GetUserResponseContent>
- Inheritance
-
GetUserResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
AppMetadata
[JsonPropertyName("app_metadata")]
public Dictionary<string, object?>? AppMetadata { get; set; }
Property Value
Blocked
Whether this user was blocked by an administrator (true) or is not (false).
[JsonPropertyName("blocked")]
public bool? Blocked { get; set; }
Property Value
- bool?
CreatedAt
[JsonPropertyName("created_at")]
public UserDateSchema? CreatedAt { get; set; }
Property Value
Email address of this user.
[JsonPropertyName("email")]
public string? Email { get; set; }
Property Value
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
GivenName
Given name/first name/forename of this user.
[JsonPropertyName("given_name")]
public string? GivenName { get; set; }
Property Value
Identities
Array of user identity objects when accounts are linked.
[JsonPropertyName("identities")]
public IEnumerable<UserIdentitySchema>? Identities { get; set; }
Property Value
LastIp
Last IP address from which this user logged in.
[JsonPropertyName("last_ip")]
public string? LastIp { get; set; }
Property Value
LastLogin
[JsonPropertyName("last_login")]
public UserDateSchema? LastLogin { get; set; }
Property Value
LoginsCount
Total number of logins this user has performed.
[JsonPropertyName("logins_count")]
public int? LoginsCount { get; set; }
Property Value
- int?
Multifactor
List of multi-factor authentication providers with which this user has enrolled.
[JsonPropertyName("multifactor")]
public IEnumerable<string>? Multifactor { get; set; }
Property Value
Name
Name of this user.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
Nickname
Preferred nickname or alias of this user.
[JsonPropertyName("nickname")]
public string? Nickname { get; set; }
Property Value
PhoneNumber
Phone number for this user. Follows the E.164 recommendation.
[JsonPropertyName("phone_number")]
public string? PhoneNumber { get; set; }
Property Value
PhoneVerified
Whether this phone number has been verified (true) or not (false).
[JsonPropertyName("phone_verified")]
public bool? PhoneVerified { get; set; }
Property Value
- bool?
Picture
URL to picture, photo, or avatar of this user.
[JsonPropertyName("picture")]
public string? Picture { get; set; }
Property Value
UpdatedAt
[JsonPropertyName("updated_at")]
public UserDateSchema? UpdatedAt { get; set; }
Property Value
UserId
ID of the user which can be used when interacting with other APIs.
[JsonPropertyName("user_id")]
public string? UserId { get; set; }
Property Value
UserMetadata
[JsonPropertyName("user_metadata")]
public Dictionary<string, object?>? UserMetadata { get; set; }
Property Value
Username
Username of this user.
[JsonPropertyName("username")]
public string? Username { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.