mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 13:54:39 +01:00
899 B
899 B
title | description |
---|---|
inputAppEvent | inputAppEvent attributes, type and example |
Constructor: inputAppEvent
Attributes:
Name | Type | Required |
---|---|---|
time | double | Yes |
type | string | Yes |
peer | long | Yes |
data | string | Yes |
Type: InputAppEvent
Example:
$inputAppEvent = ['_' => 'inputAppEvent', 'time' => double, 'type' => string, 'peer' => long, 'data' => string, ];
PWRTelegram json-encoded version:
{"_":"inputAppEvent","time":"double","type":"string","peer":"long","data":"string"}
Or, if you're into Lua:
inputAppEvent={_='inputAppEvent', time=double, type=string, peer=long, data=string, }