Class JwtConfiguration
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
public class JwtConfiguration
- Inheritance
-
JwtConfiguration
- Inherited Members
Properties
IsSecretEncoded
True if the client secret is base64 encoded, false otherwise. Defaults to true.
[JsonProperty("secret_encoded")]
public bool? IsSecretEncoded { get; set; }
Property Value
- bool?
LifetimeInSeconds
The amount of time (in seconds) that the token will be valid after being issued. (affects 'exp' claim)
[JsonProperty("lifetime_in_seconds")]
public int? LifetimeInSeconds { get; set; }
Property Value
- int?
Scopes
The scopes for the JWT.
[JsonProperty("scopes")]
public Scopes Scopes { get; set; }
Property Value
SigningAlgorithm
The algorithm used to sign the JsonWebToken. Possible values are 'HS256' or 'RS256'.
[JsonProperty("alg")]
public string SigningAlgorithm { get; set; }