UNPKG

chatkitty

Version:
29 lines (21 loc) 1.08 kB
# ChannelImport ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **string** | | [default to undefined] **creator** | **string** | Username of the user who created this channel | [optional] [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] **members** | **Array<string>** | List of usernames of members of this channel | [default to undefined] **properties** | **{ [key: string]: object; }** | Custom data associated with this channel | [optional] [default to undefined] ## Example ```typescript import { ChannelImport } from 'chatkitty'; const instance: ChannelImport = { type, creator, idempotency_key, members, 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)