MadelineProto/old_docs/API_docs_v25/constructors/messageActionGeoChatCreate.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

860 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'}