Table of Contents

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

string

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

string

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

Connection

Name of the connection containing this identity.

[JsonPropertyName("connection")]
public string? Connection { get; set; }

Property Value

string

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

UserProfileData

Provider

[JsonPropertyName("provider")]
public UserIdentityProviderEnum? Provider { get; set; }

Property Value

UserIdentityProviderEnum?

RefreshToken

IDP refresh token returned only if scope read:user_idp_tokens is defined.

[JsonPropertyName("refresh_token")]
public string? RefreshToken { get; set; }

Property Value

string

UserId

Unique identifier of the user user for this identity.

[JsonPropertyName("user_id")]
public string? UserId { 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.