Class CreateScimTokenResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateScimTokenResponseContent : IJsonOnDeserialized, IEquatable<CreateScimTokenResponseContent>
- Inheritance
-
CreateScimTokenResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
CreatedAt
The token's created at timestamp
[JsonPropertyName("created_at")]
public string? CreatedAt { get; set; }
Property Value
Scopes
The scopes of the scim token
[JsonPropertyName("scopes")]
public IEnumerable<string>? Scopes { get; set; }
Property Value
Token
The scim client's token
[JsonPropertyName("token")]
public string? Token { get; set; }
Property Value
TokenId
The token's identifier
[JsonPropertyName("token_id")]
public string? TokenId { get; set; }
Property Value
ValidUntil
The token's valid until at timestamp
[JsonPropertyName("valid_until")]
public string? ValidUntil { 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.