UNPKG

chatkitty

Version:
31 lines (23 loc) 1.27 kB
# ChatUserImport ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **display_name** | **string** | Human readable name of this user. Shown to other users | [default to undefined] **display_picture** | [**FileImport**](FileImport.md) | | [optional] [default to undefined] **guest** | **boolean** | True if this user was created by a guest user session | [default to undefined] **idempotency_key** | **string** | Unique value generated by the client which ChatKitty uses to recognize subsequent retries of the same request. Optional but recommended | [optional] [default to undefined] **name** | **string** | The unique name used to identify this user across ChatKitty. Also known as username | [default to undefined] **properties** | **{ [key: string]: object; }** | Custom data associated with this user | [default to undefined] ## Example ```typescript import { ChatUserImport } from 'chatkitty'; const instance: ChatUserImport = { display_name, display_picture, guest, idempotency_key, name, 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)