MadelineProtoDocs/old_docs/API_docs_v71/constructors/pong.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

716 B

title description image
pong pong attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

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}