UNPKG

chatkitty

Version:
34 lines (26 loc) 1.41 kB
# MessageMentionChannelProperties Channel properties embedded in channel mentions ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **string** | The type of this channel | [default to undefined] **id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined] **created_time** | **string** | The ISO date-time this channel was created | [default to undefined] **creator** | [**ChatUserProperties**](ChatUserProperties.md) | | [optional] [default to undefined] **display_name** | **string** | Human readable name of this channel shown to users. Present if this is a group channel | [optional] [default to undefined] **name** | **string** | The unique name of this channel used to reference the channel. Present if this is a group channel | [optional] [default to undefined] **properties** | **{ [key: string]: object; }** | Custom data associated with this channel | [default to undefined] ## Example ```typescript import { MessageMentionChannelProperties } from 'chatkitty'; const instance: MessageMentionChannelProperties = { type, id, created_time, creator, display_name, 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)