Class DeviceCodeTokenRequest
- Namespace
- Auth0.AuthenticationApi.Models
- Assembly
- Auth0.AuthenticationApi.dll
Represents a request to exchange a Device Code for an access token during the OAuth authentication flow.
public class DeviceCodeTokenRequest
- Inheritance
-
DeviceCodeTokenRequest
- Inherited Members
Properties
ClientId
Client ID of the application.
public string ClientId { get; set; }
Property Value
DeviceCode
Device code to be exchanged.
public string DeviceCode { get; set; }
Property Value
SigningAlgorithm
What JwtSignatureAlgorithm is used to verify the signature of Id Tokens.
public JwtSignatureAlgorithm SigningAlgorithm { get; set; }