Class GetSigningKeysResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetSigningKeysResponseContent : IJsonOnDeserialized, IEquatable<GetSigningKeysResponseContent>
- Inheritance
-
GetSigningKeysResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Cert
The public certificate of the signing key
[JsonPropertyName("cert")]
public required string Cert { get; set; }
Property Value
Current
True if the key is the the current key
[JsonPropertyName("current")]
public bool? Current { get; set; }
Property Value
- bool?
CurrentSince
[JsonPropertyName("current_since")]
public SigningKeysDate? CurrentSince { get; set; }
Property Value
CurrentUntil
[JsonPropertyName("current_until")]
public SigningKeysDate? CurrentUntil { get; set; }
Property Value
Fingerprint
The cert fingerprint
[JsonPropertyName("fingerprint")]
public required string Fingerprint { get; set; }
Property Value
Kid
The key id of the signing key
[JsonPropertyName("kid")]
public required string Kid { get; set; }
Property Value
Next
True if the key is the the next key
[JsonPropertyName("next")]
public bool? Next { get; set; }
Property Value
- bool?
Pkcs7
The public certificate of the signing key in pkcs7 format
[JsonPropertyName("pkcs7")]
public string? Pkcs7 { get; set; }
Property Value
Previous
True if the key is the the previous key
[JsonPropertyName("previous")]
public bool? Previous { get; set; }
Property Value
- bool?
Revoked
True if the key is revoked
[JsonPropertyName("revoked")]
public bool? Revoked { get; set; }
Property Value
- bool?
RevokedAt
[JsonPropertyName("revoked_at")]
public SigningKeysDate? RevokedAt { get; set; }
Property Value
Thumbprint
The cert thumbprint
[JsonPropertyName("thumbprint")]
public required string Thumbprint { 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.