UNPKG

chatkitty

Version:
33 lines (25 loc) 1.23 kB
# ChatUserSessionResource ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined] **created_time** | **string** | Time this session was created | [default to undefined] **end_time** | **string** | Time this session ended. Present if state is ENDED | [optional] [default to undefined] **state** | **string** | State of this session. ACTIVE or ENDED | [default to undefined] **user** | [**ChatUserProperties**](ChatUserProperties.md) | | [default to undefined] **user_agent** | **string** | User agent used to start this session | [optional] [default to undefined] **_links** | [**Array<Link>**](Link.md) | Hypermedia control links for this resource | [optional] [default to undefined] ## Example ```typescript import { ChatUserSessionResource } from 'chatkitty'; const instance: ChatUserSessionResource = { id, created_time, end_time, state, user, user_agent, _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)