mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 19:58:06 +01:00
37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
|
---
|
||
|
title: geoChat
|
||
|
description: geoChat attributes, type and example
|
||
|
---
|
||
|
## Constructor: geoChat
|
||
|
[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|
|
||
|
|address|[string](../types/string.md) | Required|
|
||
|
|venue|[string](../types/string.md) | Required|
|
||
|
|geo|[GeoPoint](../types/GeoPoint.md) | Required|
|
||
|
|photo|[ChatPhoto](../types/ChatPhoto.md) | Required|
|
||
|
|participants\_count|[int](../types/int.md) | Required|
|
||
|
|date|[int](../types/int.md) | Required|
|
||
|
|checked\_in|[Bool](../types/Bool.md) | Required|
|
||
|
|version|[int](../types/int.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Chat](../types/Chat.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$geoChat = ['_' => 'geoChat', 'id' => int, 'access_hash' => long, 'title' => string, 'address' => string, 'venue' => string, 'geo' => GeoPoint, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'checked_in' => Bool, 'version' => int, ];
|
||
|
```
|
||
|
|