Table of Contents

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

ReadOnlyAdditionalProperties

CreatedAt

The token's created at timestamp

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

Property Value

string

Scopes

The scopes of the scim token

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

Property Value

IEnumerable<string>

Token

The scim client's token

[JsonPropertyName("token")]
public string? Token { get; set; }

Property Value

string

TokenId

The token's identifier

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

Property Value

string

ValidUntil

The token's valid until at 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.