Class DeleteUserIdentityResponseContentItem
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record DeleteUserIdentityResponseContentItem : IJsonOnDeserialized, IEquatable<DeleteUserIdentityResponseContentItem>
- Inheritance
-
DeleteUserIdentityResponseContentItem
- 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
The name of the connection for the identity.
[JsonPropertyName("connection")]
public required string Connection { get; set; }
Property Value
IsSocial
true if the identity provider is a social provider, falses otherwise
[JsonPropertyName("isSocial")]
public bool? IsSocial { get; set; }
Property Value
- bool?
ProfileData
[JsonPropertyName("profileData")]
public UserProfileData? ProfileData { get; set; }
Property Value
Provider
The type of identity provider.
[JsonPropertyName("provider")]
public required string 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
The unique identifier for the user for the identity.
[JsonPropertyName("user_id")]
public required 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.