help.SaveAppLog
- class pyrogram.raw.functions.help.SaveAppLog
Saves logs of application on the server.
- Details:
Layer:
223ID:
6F02F748
- Parameters:
events (List of
InputAppEvent) – List of input events- Returns:
bool
TL Schema
help.saveAppLog#6f02f748
events:Vector<InputAppEvent>
= Bool
Parameter Tree
SaveAppLog
└── events →
Vector < InputAppEvent >└──
InputAppEvent├── time →
double├── type →
string├── peer →
long└── data →
JSONValue├──
JsonNull├──
JsonBool│ └── value →
Bool├──
JsonNumber│ └── value →
double├──
JsonString│ └── value →
string├──
JsonArray│ └── value →
Vector < JSONValue >│ ├──
JsonNull│ ├──
JsonBool│ ├──
JsonNumber│ ├──
JsonString│ ├──
JsonArray│ └──
JsonObject└──
JsonObject└── value →
Vector < JSONObjectValue >└──
JsonObjectValueExample
await app.invoke(
SaveAppLog(
events=[
InputAppEvent(
time=0.0,
type="text",
peer=0,
data=JsonNull()
)
],
)
)