help.AppConfig
- class pyrogram.raw.base.help.AppConfig
Contains various client configuration parameters
- Constructors:
This base type has 2 constructors available.
Contains various client configuration parameters
The client configuration parameters haven't changed
- Functions:
This object can be returned by 1 function.
Get app-specific configuration, see client configuration for more info on the result.
TL Schema
help.appConfig#dd18782e
hash:int
config:JSONValue
= help.AppConfig
Parameter Tree
AppConfig
├── hash →
int└── config →
JSONValue├──
JsonNull├──
JsonBool│ └── value →
Bool├──
JsonNumber│ └── value →
double├──
JsonString│ └── value →
string├──
JsonArray│ └── value →
Vector < 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 >│ └──
JsonObjectValue└──
JsonObject└── value →
Vector < JSONObjectValue >└──
JsonObjectValue├── key →
string└── value →
JSONValueExample
AppConfig(
hash=0,
config=JsonNull(),
)