JSONObjectValue

class pyrogram.raw.base.JSONObjectValue

JSON key: value pair

Constructors:

This base type has 1 constructor available.

JsonObjectValue

JSON key: value pair

TL Schema


Parameter Tree

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

Example