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
CreatedAt
The DateTime when the credential was created
[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }
Property Value
CredentialType
The type of the credential
[JsonProperty("credential_type")]
public string CredentialType { get; set; }
Property Value
ExpiresAt
The DateTime when the credential expires
[JsonProperty("expires_at")]
public DateTime? ExpiresAt { get; set; }
Property Value
Id
The id of the credential
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Kid
The kid of the credential
[JsonProperty("kid")]
public string Kid { get; set; }
Property Value
Name
The name of the credential
[JsonProperty("name")]
public string Name { get; set; }
Property Value
UpdatedAt
The DateTime when the credential was updated
[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }