Class GetTokenExchangeProfileResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetTokenExchangeProfileResponseContent : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<GetTokenExchangeProfileResponseContent>
- Inheritance
-
GetTokenExchangeProfileResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
ActionId
The ID of the Custom Token Exchange action to execute for this profile, in order to validate the subject_token. The action must use the custom-token-exchange trigger.
[JsonPropertyName("action_id")]
public string? ActionId { get; set; }
Property Value
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
CreatedAt
The time when this profile was created.
[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }
Property Value
Id
The unique ID of the token exchange profile.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Name
Friendly name of this profile.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
SubjectTokenType
Subject token type for this profile. When receiving a token exchange request on the Authentication API, the corresponding token exchange profile with a matching subject_token_type will be executed. This must be a URI.
[JsonPropertyName("subject_token_type")]
public string? SubjectTokenType { get; set; }
Property Value
Type
[JsonPropertyName("type")]
public TokenExchangeProfileTypeEnum? Type { get; set; }
Property Value
UpdatedAt
The time when this profile was updated.
[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { 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.