MadelineProto/old_docs/API_docs_v33/constructors/messageActionGeoChatCreate.md
2017-07-23 16:11:02 +02:00

851 B

title description
messageActionGeoChatCreate messageActionGeoChatCreate attributes, type and example

Constructor: messageActionGeoChatCreate

Back to constructors index

Attributes:

Name Type Required
title string Yes
address string Yes

Type: MessageAction

Example:

$messageActionGeoChatCreate = ['_' => 'messageActionGeoChatCreate', 'title' => string, 'address' => string, ];

PWRTelegram json-encoded version:

{"_":"messageActionGeoChatCreate","title":"string","address":"string"}

Or, if you're into Lua:

messageActionGeoChatCreate={_='messageActionGeoChatCreate', title=string, address=string, }