MadelineProtoDocs/old_docs/API_docs_v33/constructors/inputGeoChat.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

836 B

title description image
inputGeoChat Geo chat https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputGeoChat

Back to constructors index

Geo chat

Attributes:

Name Type Required Description
chat_id int Yes Chat ID
access_hash long Yes Access hash

Type: InputGeoChat

Example:

$inputGeoChat = ['_' => 'inputGeoChat', 'chat_id' => int, 'access_hash' => long];

PWRTelegram json-encoded version:

{"_": "inputGeoChat", "chat_id": int, "access_hash": long}

Or, if you're into Lua:

inputGeoChat={_='inputGeoChat', chat_id=int, access_hash=long}