# PostApiV4ApplicationsRequest


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **string** | Name of the application. | [default to undefined]
**redirect_uri** | **string** | Redirect URI of the application. | [default to undefined]
**scopes** | **string** | Scopes of the application. You can specify multiple scopes by separating\\                                  each scope using a space | [default to undefined]
**confidential** | **boolean** | The application is used where the client secret can be kept confidential. Native mobile apps \\                         and Single Page Apps are considered non-confidential. Defaults to true if not supplied | [optional] [default to true]

## Example

```typescript
import { PostApiV4ApplicationsRequest } from 'berg';

const instance: PostApiV4ApplicationsRequest = {
    name,
    redirect_uri,
    scopes,
    confidential,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
