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
├── key → string
└── value → 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

Example