mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 16:46:56 +01:00
757 B
757 B
title | description |
---|---|
inputMessageContact | User contact message |
Constructor: inputMessageContact
User contact message
Attributes:
Name | Type | Required | Description |
---|---|---|---|
contact | contact | Yes | Contact to send |
Type: InputMessageContent
Example:
$inputMessageContact = ['_' => 'inputMessageContact', 'contact' => contact, ];
PWRTelegram json-encoded version:
{"_":"inputMessageContact","contact":"contact"}
Or, if you're into Lua:
inputMessageContact={_='inputMessageContact', contact=contact, }