# ApplicationResource


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined]
**created_time** | **string** | ISO date-time this application was created | [default to undefined]
**key** | **string** | Primary API key assigned to this application | [default to undefined]
**properties** | **{ [key: string]: object; }** | Custom properties attached to this application | [default to undefined]
**_links** | [**Array&lt;Link&gt;**](Link.md) | Hypermedia control links for this resource | [optional] [default to undefined]

## Example

```typescript
import { ApplicationResource } from 'chatkitty';

const instance: ApplicationResource = {
    id,
    created_time,
    key,
    properties,
    _links,
};
```

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