Class ClientJwtConfiguration
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Configuration related to JWTs for the client.
[Serializable]
public record ClientJwtConfiguration : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ClientJwtConfiguration>
- Inheritance
-
ClientJwtConfiguration
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Alg
[JsonPropertyName("alg")]
public SigningAlgorithmEnum? Alg { get; set; }
Property Value
LifetimeInSeconds
Number of seconds the JWT will be valid for (affects exp claim).
[JsonPropertyName("lifetime_in_seconds")]
public int? LifetimeInSeconds { get; set; }
Property Value
- int?
Scopes
[JsonPropertyName("scopes")]
public Dictionary<string, object?>? Scopes { get; set; }
Property Value
SecretEncoded
Whether the client secret is base64 encoded (true) or unencoded (false).
[JsonPropertyName("secret_encoded")]
public bool? SecretEncoded { get; set; }
Property Value
- bool?
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.