44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
|
---
|
||
|
title: channel
|
||
|
description: channel attributes, type and example
|
||
|
---
|
||
|
## Constructor: channel
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|id|[int](../types/int.md) | Required|
|
||
|
|access\_hash|[long](../types/long.md) | Required|
|
||
|
|title|[string](../types/string.md) | Required|
|
||
|
|photo|[ChatPhoto](../types/ChatPhoto.md) | Required|
|
||
|
|date|[int](../types/int.md) | Required|
|
||
|
|version|[int](../types/int.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Chat](../types/Chat.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$channel = ['_' => 'channel', 'id' => int, 'access_hash' => long, 'title' => string, 'photo' => ChatPhoto, 'date' => int, 'version' => int, ];
|
||
|
```
|
||
|
|
||
|
The following syntaxes can also be used:
|
||
|
|
||
|
```
|
||
|
$channel = '@username'; // Username
|
||
|
|
||
|
$channel = 44700; // bot API id (users)
|
||
|
$channel = -492772765; // bot API id (chats)
|
||
|
$channel = -10038575794; // bot API id (channels)
|
||
|
|
||
|
$channel = 'user#44700'; // tg-cli style id (users)
|
||
|
$channel = 'chat#492772765'; // tg-cli style id (chats)
|
||
|
$channel = 'channel#38575794'; // tg-cli style id (channels)
|
||
|
```
|