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 AccountGetChatThemesRequest struct {
Hash int64
}
const AccountGetChatThemesRequestTypeID = 0xd638de89
var (
_ bin .Encoder = &AccountGetChatThemesRequest {}
_ bin .Decoder = &AccountGetChatThemesRequest {}
_ bin .BareEncoder = &AccountGetChatThemesRequest {}
_ bin .BareDecoder = &AccountGetChatThemesRequest {}
)
func (g *AccountGetChatThemesRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Hash == 0 ) {
return false
}
return true
}
func (g *AccountGetChatThemesRequest ) String () string {
if g == nil {
return "AccountGetChatThemesRequest(nil)"
}
type Alias AccountGetChatThemesRequest
return fmt .Sprintf ("AccountGetChatThemesRequest%+v" , Alias (*g ))
}
func (g *AccountGetChatThemesRequest ) FillFrom (from interface {
GetHash () (value int64 )
}) {
g .Hash = from .GetHash ()
}
func (*AccountGetChatThemesRequest ) TypeID () uint32 {
return AccountGetChatThemesRequestTypeID
}
func (*AccountGetChatThemesRequest ) TypeName () string {
return "account.getChatThemes"
}
func (g *AccountGetChatThemesRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.getChatThemes" ,
ID : AccountGetChatThemesRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Hash" ,
SchemaName : "hash" ,
},
}
return typ
}
func (g *AccountGetChatThemesRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode account.getChatThemes#d638de89 as nil" )
}
b .PutID (AccountGetChatThemesRequestTypeID )
return g .EncodeBare (b )
}
func (g *AccountGetChatThemesRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode account.getChatThemes#d638de89 as nil" )
}
b .PutLong (g .Hash )
return nil
}
func (g *AccountGetChatThemesRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode account.getChatThemes#d638de89 to nil" )
}
if err := b .ConsumeID (AccountGetChatThemesRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.getChatThemes#d638de89: %w" , err )
}
return g .DecodeBare (b )
}
func (g *AccountGetChatThemesRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode account.getChatThemes#d638de89 to nil" )
}
{
value , err := b .Long ()
if err != nil {
return fmt .Errorf ("unable to decode account.getChatThemes#d638de89: field hash: %w" , err )
}
g .Hash = value
}
return nil
}
func (g *AccountGetChatThemesRequest ) GetHash () (value int64 ) {
if g == nil {
return
}
return g .Hash
}
func (c *Client ) AccountGetChatThemes (ctx context .Context , hash int64 ) (AccountThemesClass , error ) {
var result AccountThemesBox
request := &AccountGetChatThemesRequest {
Hash : hash ,
}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .Themes , nil
}
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 .