MadelineProtoDocs/old_docs/API_docs_v25/constructors/inputGeoChat.md

44 lines
735 B
Markdown
Raw Normal View History

2018-04-01 13:24:46 +02:00
---
title: inputGeoChat
description: inputGeoChat attributes, type and example
---
## Constructor: inputGeoChat
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|chat\_id|[int](../types/int.md) | Yes|
|access\_hash|[long](../types/long.md) | Yes|
### Type: [InputGeoChat](../types/InputGeoChat.md)
### Example:
```
$inputGeoChat = ['_' => 'inputGeoChat', 'chat_id' => int, 'access_hash' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputGeoChat", "chat_id": int, "access_hash": long}
```
Or, if you're into Lua:
```
inputGeoChat={_='inputGeoChat', chat_id=int, access_hash=long}
```