Class ClientAddonLayer
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Layer addon configuration.
[Serializable]
public record ClientAddonLayer : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ClientAddonLayer>
- Inheritance
-
ClientAddonLayer
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Expiration
Optional expiration in minutes for the generated token. Defaults to 5 minutes.
[JsonPropertyName("expiration")]
public int? Expiration { get; set; }
Property Value
- int?
KeyId
Authentication Key identifier used to sign the Layer token.
[JsonPropertyName("keyId")]
public required string KeyId { get; set; }
Property Value
Principal
Name of the property used as the unique user id in Layer. If not specified user_id is used.
[JsonPropertyName("principal")]
public string? Principal { get; set; }
Property Value
PrivateKey
Private key for signing the Layer token.
[JsonPropertyName("privateKey")]
public required string PrivateKey { get; set; }
Property Value
ProviderId
Provider ID of your Layer account
[JsonPropertyName("providerId")]
public required string ProviderId { 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.