chatkitty
Version:
OpenAPI client for chatkitty
31 lines (23 loc) • 1.38 kB
Markdown
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<string>** | 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]
```typescript
import { GroupChannelImport } from 'chatkitty';
const instance: GroupChannelImport = {
creator,
display_name,
idempotency_key,
members,
name,
properties,
};
```
[[Back to Model list]](../README.md