package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type JSONObjectValue struct {
Key string
Value JSONValueClass
}
const JSONObjectValueTypeID = 0xc0de1bd9
var (
_ bin .Encoder = &JSONObjectValue {}
_ bin .Decoder = &JSONObjectValue {}
_ bin .BareEncoder = &JSONObjectValue {}
_ bin .BareDecoder = &JSONObjectValue {}
)
func (j *JSONObjectValue ) Zero () bool {
if j == nil {
return true
}
if !(j .Key == "" ) {
return false
}
if !(j .Value == nil ) {
return false
}
return true
}
func (j *JSONObjectValue ) String () string {
if j == nil {
return "JSONObjectValue(nil)"
}
type Alias JSONObjectValue
return fmt .Sprintf ("JSONObjectValue%+v" , Alias (*j ))
}
func (j *JSONObjectValue ) FillFrom (from interface {
GetKey () (value string )
GetValue () (value JSONValueClass )
}) {
j .Key = from .GetKey ()
j .Value = from .GetValue ()
}
func (*JSONObjectValue ) TypeID () uint32 {
return JSONObjectValueTypeID
}
func (*JSONObjectValue ) TypeName () string {
return "jsonObjectValue"
}
func (j *JSONObjectValue ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "jsonObjectValue" ,
ID : JSONObjectValueTypeID ,
}
if j == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Key" ,
SchemaName : "key" ,
},
{
Name : "Value" ,
SchemaName : "value" ,
},
}
return typ
}
func (j *JSONObjectValue ) Encode (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't encode jsonObjectValue#c0de1bd9 as nil" )
}
b .PutID (JSONObjectValueTypeID )
return j .EncodeBare (b )
}
func (j *JSONObjectValue ) EncodeBare (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't encode jsonObjectValue#c0de1bd9 as nil" )
}
b .PutString (j .Key )
if j .Value == nil {
return fmt .Errorf ("unable to encode jsonObjectValue#c0de1bd9: field value is nil" )
}
if err := j .Value .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode jsonObjectValue#c0de1bd9: field value: %w" , err )
}
return nil
}
func (j *JSONObjectValue ) Decode (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't decode jsonObjectValue#c0de1bd9 to nil" )
}
if err := b .ConsumeID (JSONObjectValueTypeID ); err != nil {
return fmt .Errorf ("unable to decode jsonObjectValue#c0de1bd9: %w" , err )
}
return j .DecodeBare (b )
}
func (j *JSONObjectValue ) DecodeBare (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't decode jsonObjectValue#c0de1bd9 to nil" )
}
{
value , err := b .String ()
if err != nil {
return fmt .Errorf ("unable to decode jsonObjectValue#c0de1bd9: field key: %w" , err )
}
j .Key = value
}
{
value , err := DecodeJSONValue (b )
if err != nil {
return fmt .Errorf ("unable to decode jsonObjectValue#c0de1bd9: field value: %w" , err )
}
j .Value = value
}
return nil
}
func (j *JSONObjectValue ) GetKey () (value string ) {
if j == nil {
return
}
return j .Key
}
func (j *JSONObjectValue ) GetValue () (value JSONValueClass ) {
if j == nil {
return
}
return j .Value
}
The pages are generated with Golds v0.6.7 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds .