# ChatUserSessionProperties


## 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]

## Example

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

const instance: ChatUserSessionProperties = {
    id,
    created_time,
    end_time,
    state,
    user,
    user_agent,
};
```

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