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