Class ImportEncryptionKeyResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Encryption key
[Serializable]
public record ImportEncryptionKeyResponseContent : IJsonOnDeserialized, IEquatable<ImportEncryptionKeyResponseContent>
- Inheritance
-
ImportEncryptionKeyResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
CreatedAt
Key creation timestamp
[JsonPropertyName("created_at")]
public required DateTime CreatedAt { get; set; }
Property Value
Kid
Key ID
[JsonPropertyName("kid")]
public required string Kid { get; set; }
Property Value
ParentKid
ID of parent wrapping key
[JsonPropertyName("parent_kid")]
public Optional<string?> ParentKid { get; set; }
Property Value
PublicKey
Public key in PEM format
[JsonPropertyName("public_key")]
public Optional<string?> PublicKey { get; set; }
Property Value
State
[JsonPropertyName("state")]
public required EncryptionKeyState State { get; set; }
Property Value
Type
[JsonPropertyName("type")]
public required EncryptionKeyType Type { get; set; }
Property Value
UpdatedAt
Key update timestamp
[JsonPropertyName("updated_at")]
public required 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.