# GroupChannelImport


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creator** | **string** | Username of the user who created this channel | [optional] [default to undefined]
**display_name** | **string** | Human readable name of this channel shown to users. If absent defaults to the channel name | [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&lt;string&gt;** | List of usernames of members of this channel | [default to undefined]
**name** | **string** | The unique name of this channel used to reference the channel. If absent defaults to a random UUID | [optional] [default to undefined]
**properties** | **{ [key: string]: object; }** | Custom data associated with this channel | [optional] [default to undefined]

## Example

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

const instance: GroupChannelImport = {
    creator,
    display_name,
    idempotency_key,
    members,
    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)
