@ory/client
Version:
OpenAPI client for @ory/client
29 lines (21 loc) • 1.2 kB
Markdown
# VerifyUserCodeRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**client** | [**OAuth2Client**](OAuth2Client.md) | | [optional] [default to undefined]
**device_code_request_id** | **string** | | [optional] [default to undefined]
**request_url** | **string** | RequestURL is the original Device Authorization URL requested. | [optional] [default to undefined]
**requested_access_token_audience** | **Array<string>** | RequestedAudience contains the access token audience as requested by the OAuth 2.0 Client. | [optional] [default to undefined]
**requested_scope** | **Array<string>** | RequestedScope contains the OAuth 2.0 Scope requested by the OAuth 2.0 Client. | [optional] [default to undefined]
## Example
```typescript
import { VerifyUserCodeRequest } from '@ory/client';
const instance: VerifyUserCodeRequest = {
client,
device_code_request_id,
request_url,
requested_access_token_audience,
requested_scope,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)