Layer 220
JsonValue
Abstract type representing one of 6 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.JsonValue interface.
Use any of the following constructors:
Gogram Example
// JSONValue is an interface type // You can use any of the following constructors: var _ tg.JsonValue = &tg.JsonNull{} var _ tg.JsonValue = &tg.JsonBool{} var _ tg.JsonValue = &tg.JsonArray{} var _ tg.JsonValue = &tg.JsonNumber{} var _ tg.JsonValue = &tg.JsonString{} // ... and 1 more constructors