Table of Contents

Class ScimTokenBase

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Represents an SCIM token for an SCIM client.

public class ScimTokenBase
Inheritance
ScimTokenBase
Derived
Inherited Members

Properties

CreatedAt

The token's created at timestamp

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

Property Value

string

Scopes

The scopes of the scim token

[JsonProperty("scopes")]
public string[] Scopes { get; set; }

Property Value

string[]

TokenId

The token's identifier

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

Property Value

string

ValidUntil

The token's valid until at timestamp

[JsonProperty("valid_until")]
public string ValidUntil { get; set; }

Property Value

string