Class ConnectionKey
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ConnectionKey : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ConnectionKey>
- Inheritance
-
ConnectionKey
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Algorithm
Signing key algorithm
[JsonPropertyName("algorithm")]
public string? Algorithm { get; set; }
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
The date and time when the key became the current key
[JsonPropertyName("current_since")]
public string? CurrentSince { get; set; }
Property Value
Fingerprint
The cert fingerprint
[JsonPropertyName("fingerprint")]
public required string Fingerprint { get; set; }
Property Value
KeyUse
[JsonPropertyName("key_use")]
public ConnectionKeyUseEnum? KeyUse { 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?
Pkcs
The public certificate of the signing key in pkcs7 format
[JsonPropertyName("pkcs")]
public string? Pkcs { get; set; }
Property Value
Previous
True if the key is the the previous key
[JsonPropertyName("previous")]
public bool? Previous { get; set; }
Property Value
- bool?
SubjectDn
[JsonPropertyName("subject_dn")]
public string? SubjectDn { 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.