Table of Contents

Class Credential

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll
public class Credential
Inheritance
Credential
Inherited Members

Properties

Algorithm

Algorithm which will be used with the credential. Supported algorithms: RS256,RS384,PS256

[JsonProperty("alg")]
public string Algorithm { get; set; }

Property Value

string

CreatedAt

The DateTime when the credential was created

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

Property Value

DateTime

CredentialType

The type of the credential

[JsonProperty("credential_type")]
public string CredentialType { get; set; }

Property Value

string

ExpiresAt

The DateTime when the credential expires

[JsonProperty("expires_at")]
public DateTime? ExpiresAt { get; set; }

Property Value

DateTime?

Id

The id of the credential

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

Kid

The kid of the credential

[JsonProperty("kid")]
public string Kid { get; set; }

Property Value

string

Name

The name of the credential

[JsonProperty("name")]
public string Name { get; set; }

Property Value

string

UpdatedAt

The DateTime when the credential was updated

[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }

Property Value

DateTime