Table of Contents

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

AdditionalProperties

CreatedAt

The token's created at timestamp

[JsonPropertyName("created_at")]
public string? CreatedAt { get; set; }

Property Value

string

LastUsedAt

The token's last used at timestamp

[JsonPropertyName("last_used_at")]
public string? LastUsedAt { get; set; }

Property Value

string

Scopes

The scopes of the scim token

[JsonPropertyName("scopes")]
public IEnumerable<string>? Scopes { get; set; }

Property Value

IEnumerable<string>

TokenId

The token's identifier

[JsonPropertyName("token_id")]
public string? TokenId { get; set; }

Property Value

string

ValidUntil

The token's valid until timestamp

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