mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 14:34:39 +01:00
743 B
743 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, ];
Or, if you're into Lua:
inputAppEvent={_='inputAppEvent', time=double, type=string, peer=long, data=string, }