Class UserIdentitySchema
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UserIdentitySchema : IJsonOnDeserialized, IEquatable<UserIdentitySchema>
- Inheritance
-
UserIdentitySchema
- Implements
- Inherited Members
- Extension Methods
Properties
AccessToken
IDP access token returned only if scope read:user_idp_tokens is defined.
[JsonPropertyName("access_token")]
public string? AccessToken { get; set; }
Property Value
AccessTokenSecret
IDP access token secret returned only if scope read:user_idp_tokens is defined.
[JsonPropertyName("access_token_secret")]
public string? AccessTokenSecret { get; set; }
Property Value
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Connection
Name of the connection containing this identity.
[JsonPropertyName("connection")]
public string? Connection { get; set; }
Property Value
IsSocial
Whether this identity is from a social provider (true) or not (false).
[JsonPropertyName("isSocial")]
public bool? IsSocial { get; set; }
Property Value
- bool?
ProfileData
[JsonPropertyName("profileData")]
public UserProfileData? ProfileData { get; set; }
Property Value
Provider
[JsonPropertyName("provider")]
public UserIdentityProviderEnum? Provider { get; set; }
Property Value
RefreshToken
IDP refresh token returned only if scope read:user_idp_tokens is defined.
[JsonPropertyName("refresh_token")]
public string? RefreshToken { get; set; }
Property Value
UserId
Unique identifier of the user user for this identity.
[JsonPropertyName("user_id")]
public string? UserId { 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.