Class ScimTokenItem
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ScimTokenItem : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ScimTokenItem>
- Inheritance
-
ScimTokenItem
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
CreatedAt
The token's created at timestamp
[JsonPropertyName("created_at")]
public string? CreatedAt { get; set; }
Property Value
LastUsedAt
The token's last used at timestamp
[JsonPropertyName("last_used_at")]
public string? LastUsedAt { get; set; }
Property Value
Scopes
The scopes of the scim token
[JsonPropertyName("scopes")]
public IEnumerable<string>? Scopes { 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 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.