UNPKG

chatkitty

Version:
31 lines (23 loc) 1.12 kB
# ChatSessionResource ## 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] **session** | [**ChatUserSessionProperties**](ChatUserSessionProperties.md) | | [default to undefined] **state** | **string** | State of this session. ACTIVE or ENDED | [default to undefined] **_links** | [**Array<Link>**](Link.md) | Hypermedia control links for this resource | [optional] [default to undefined] ## Example ```typescript import { ChatSessionResource } from 'chatkitty'; const instance: ChatSessionResource = { id, created_time, end_time, session, state, _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)