# PrivateChannelProperties

A private channel

## 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]
**last_received_message** | [**MessageProperties**](MessageProperties.md) |  | [optional] [default to undefined]
**properties** | **{ [key: string]: object; }** | Custom data associated with this channel | [default to undefined]
**display_name** | **string** | Human readable name of this channel shown to users | [default to undefined]
**name** | **string** | The unique name of this channel used to reference the channel | [default to undefined]

## Example

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

const instance: PrivateChannelProperties = {
    type,
    id,
    created_time,
    creator,
    last_received_message,
    properties,
    display_name,
    name,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
