# MessageImport


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **string** |  | [default to undefined]
**channel_id** | **number** | ID of the channel this message belongs to | [default to undefined]
**group_tag** | **string** | Tag identifying the message group this message belongs to | [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]
**properties** | **{ [key: string]: object; }** | Map of custom data attached to this message | [optional] [default to undefined]

## Example

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

const instance: MessageImport = {
    type,
    channel_id,
    group_tag,
    idempotency_key,
    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)
