help.AppConfig

class pyrogram.raw.base.help.AppConfig

Contains various client configuration parameters

Constructors:

This base type has 2 constructors available.

help.AppConfig

Contains various client configuration parameters

help.AppConfigNotModified

The client configuration parameters haven't changed

Functions:

This object can be returned by 1 function.

help.GetAppConfig

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
├── hashint
└── configJSONValue
├── 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

AppConfig(
    hash=0,
    config=JsonNull(),
)