#### [Abblix\.Oidc\.Server](https://www.abblix.com/en/docs/api/abblix-oidc-server 'index')
### [Abblix\.Oidc\.Server\.Model](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model 'Abblix\.Oidc\.Server\.Model')

## DeviceAuthorizationRequest Class

Represents a device authorization request as defined in RFC 8628\.
This request is initiated by a device with limited input capabilities to obtain
a device code and user code for user authentication on a separate device\.

```csharp
public record DeviceAuthorizationRequest : System.IEquatable<Abblix.Oidc.Server.Model.DeviceAuthorizationRequest>
```

Inheritance [System\.Object](https://learn.microsoft.com/en-us/dotnet/api/system.object 'System\.Object') → DeviceAuthorizationRequest

Implements [System\.IEquatable&lt;](https://learn.microsoft.com/en-us/dotnet/api/system.iequatable-1 'System\.IEquatable\`1')[DeviceAuthorizationRequest](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model.DeviceAuthorizationRequest 'Abblix\.Oidc\.Server\.Model\.DeviceAuthorizationRequest')[&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.iequatable-1 'System\.IEquatable\`1')
### Properties

## DeviceAuthorizationRequest\.AuthorizationDetails Property {#Abblix.Oidc.Server.Model.DeviceAuthorizationRequest.AuthorizationDetails}

RFC 9396 §3 Rich Authorization Requests array stored as the raw wire
[System\.Text\.Json\.Nodes\.JsonArray](https://learn.microsoft.com/en-us/dotnet/api/system.text.json.nodes.jsonarray 'System\.Text\.Json\.Nodes\.JsonArray')\. Device flows accept `authorization_details` by spec
reference \(RFC 9396 §3 cites RFC 8628\); the array carries through to the eventual
access token issued via the device\-code grant byte\-exact\.

```csharp
public System.Text.Json.Nodes.JsonArray? AuthorizationDetails { get; init; }
```

#### Property Value
[System\.Text\.Json\.Nodes\.JsonArray](https://learn.microsoft.com/en-us/dotnet/api/system.text.json.nodes.jsonarray 'System\.Text\.Json\.Nodes\.JsonArray')

## DeviceAuthorizationRequest\.Resources Property {#Abblix.Oidc.Server.Model.DeviceAuthorizationRequest.Resources}

Specifies the resource for which the access token is requested\.
As defined in RFC 8707, this parameter requests access tokens with a specific
scope for a particular resource\.

```csharp
public System.Uri[]? Resources { get; init; }
```

#### Property Value
[System\.Uri](https://learn.microsoft.com/en-us/dotnet/api/system.uri 'System\.Uri')[\[\]](https://learn.microsoft.com/en-us/dotnet/api/system.array 'System\.Array')

## DeviceAuthorizationRequest\.Scope Property {#Abblix.Oidc.Server.Model.DeviceAuthorizationRequest.Scope}

A space\-separated list of scopes requested by the client\.
Scopes define the level of access requested and the types of information
the client wants to retrieve\.

```csharp
public string[]? Scope { get; init; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')[\[\]](https://learn.microsoft.com/en-us/dotnet/api/system.array 'System\.Array')
