Class PostClientCredentialResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record PostClientCredentialResponseContent : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<PostClientCredentialResponseContent>
- Inheritance
-
PostClientCredentialResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Alg
[JsonPropertyName("alg")]
public ClientCredentialAlgorithmEnum? Alg { get; set; }
Property Value
CreatedAt
The ISO 8601 formatted date the credential was created.
[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }
Property Value
CredentialType
[JsonPropertyName("credential_type")]
public ClientCredentialTypeEnum? CredentialType { get; set; }
Property Value
ExpiresAt
The ISO 8601 formatted date representing the expiration of the credential.
[JsonPropertyName("expires_at")]
public DateTime? ExpiresAt { get; set; }
Property Value
Id
ID of the credential. Generated on creation.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Kid
The key identifier of the credential, generated on creation.
[JsonPropertyName("kid")]
public string? Kid { get; set; }
Property Value
Name
The name given to the credential by the user.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
SubjectDn
The X509 certificate's Subject Distinguished Name
[JsonPropertyName("subject_dn")]
public string? SubjectDn { get; set; }
Property Value
ThumbprintSha256
The X509 certificate's SHA256 thumbprint
[JsonPropertyName("thumbprint_sha256")]
public string? ThumbprintSha256 { get; set; }
Property Value
UpdatedAt
The ISO 8601 formatted date the credential was updated.
[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.