UNPKG

chatkitty

Version:
37 lines (29 loc) 1.49 kB
# ChatUserProperties ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **string** | Type of user | [default to undefined] **id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined] **call_status** | **string** | Call presence status of this user | [optional] [default to undefined] **display_name** | **string** | Human readable name of this user. Shown to other users | [default to undefined] **display_picture_url** | **string** | URL for this user\'s display picture | [default to undefined] **isGuest** | **boolean** | True if this user was created by a guest user session | [default to undefined] **name** | **string** | The unique name used to identify this user across ChatKitty. Also known as username | [default to undefined] **presence** | [**ChatUserPresenceProperties**](ChatUserPresenceProperties.md) | | [default to undefined] **properties** | **{ [key: string]: object; }** | Custom data associated with this user | [default to undefined] ## Example ```typescript import { ChatUserProperties } from 'chatkitty'; const instance: ChatUserProperties = { type, id, call_status, display_name, display_picture_url, isGuest, name, presence, properties, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)