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

985 B

title description image
messageActionGeoChatCreate Message action geo chat create https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messageActionGeoChatCreate

Back to constructors index

Message action geo chat create

Attributes:

Name Type Required Description
title string Yes Title
address string Yes Address

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