Table of Contents

Class Key

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

An Application Signing Key

public class Key
Inheritance
Key
Inherited Members

Properties

Cert

The public certificate of the signing key

[JsonProperty("cert")]
public string Cert { get; set; }

Property Value

string

Current

True if the key is the the current key

[JsonProperty("current")]
public bool? Current { get; set; }

Property Value

bool?

CurrentSince

The date and time when the key became the current key

[JsonProperty("current_since")]
public DateTime? CurrentSince { get; set; }

Property Value

DateTime?

CurrentUntil

The date and time when the current key was rotated

[JsonProperty("current_until")]
public DateTime? CurrentUntil { get; set; }

Property Value

DateTime?

Fingerprint

The cert fingerprint

[JsonProperty("fingerprint")]
public string Fingerprint { get; set; }

Property Value

string

Kid

The key id of the signing key

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

Property Value

string

Next

True if the key is the the next key

[JsonProperty("next")]
public bool? Next { get; set; }

Property Value

bool?

Pkcs7

The public certificate of the signing key in pkcs7 format

[JsonProperty("pkcs7")]
public string Pkcs7 { get; set; }

Property Value

string

Previous

True if the key is the the previous key

[JsonProperty("previous")]
public bool? Previous { get; set; }

Property Value

bool?

Revoked

True if the key is revoked

[JsonProperty("revoked")]
public bool? Revoked { get; set; }

Property Value

bool?

RevokedAt

The date and time when the key was revoked

[JsonProperty("revoked_at")]
public DateTime? RevokedAt { get; set; }

Property Value

DateTime?

Thumbprint

The cert thumbprint

[JsonProperty("thumbprint")]
public string Thumbprint { get; set; }

Property Value

string