Class ClientSigningKey
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ClientSigningKey : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ClientSigningKey>
- Inheritance
-
ClientSigningKey
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Cert
Signing certificate public key in X.509 (.CER) format.
[JsonPropertyName("cert")]
public string? Cert { get; set; }
Property Value
Pkcs7
Signing certificate public key and chain in PKCS#7 (.P7B) format.
[JsonPropertyName("pkcs7")]
public string? Pkcs7 { get; set; }
Property Value
Subject
Subject name for this certificate in the format /CN={domain}.
[JsonPropertyName("subject")]
public string? Subject { 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.