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

640 B

title description
pong pong attributes, type and example

Constructor: pong

Back to constructors index

Attributes:

Name Type Required
msg_id long Yes
ping_id long Yes

Type: Pong

Example:

$pong = ['_' => 'pong', 'msg_id' => long, 'ping_id' => long];

PWRTelegram json-encoded version:

{"_": "pong", "msg_id": long, "ping_id": long}

Or, if you're into Lua:

pong={_='pong', msg_id=long, ping_id=long}