InputAppEvent

class pyrogram.raw.base.InputAppEvent

Object contains info about an event that occurred in the application.

Constructors:

This base type has 1 constructor available.

InputAppEvent

Event that occurred in the application.

TL Schema

inputAppEvent#1d1b1245
time:double
type:string
peer:long
data:JSONValue

= InputAppEvent

Parameter Tree

InputAppEvent
├── timedouble
├── typestring
├── peerlong
└── dataJSONValue
├── JsonNull
├── JsonBool
│ └── valueBool
├── JsonNumber
│ └── valuedouble
├── JsonString
│ └── valuestring
├── JsonArray
│ └── valueVector < JSONValue >
│ ├── JsonNull
│ ├── JsonBool
│ │ └── valueBool
│ ├── JsonNumber
│ │ └── valuedouble
│ ├── JsonString
│ │ └── valuestring
│ ├── JsonArray
│ │ └── valueVector < JSONValue >
│ │ ├── JsonNull
│ │ ├── JsonBool
│ │ ├── JsonNumber
│ │ ├── JsonString
│ │ ├── JsonArray
│ │ └── JsonObject
│ └── JsonObject
│ └── valueVector < JSONObjectValue >
│ └── JsonObjectValue
└── JsonObject
└── valueVector < JSONObjectValue >
└── JsonObjectValue
├── keystring
└── valueJSONValue
├── JsonNull
├── JsonBool
├── JsonNumber
├── JsonString
├── JsonArray
└── JsonObject

Example

InputAppEvent(
    time=0.0,
    type="text",
    peer=0,
    data=JsonNull(),
)