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 MessagesGetEmojiStickerGroupsRequest struct {
Hash int
}
const MessagesGetEmojiStickerGroupsRequestTypeID = 0x1dd840f5
var (
_ bin .Encoder = &MessagesGetEmojiStickerGroupsRequest {}
_ bin .Decoder = &MessagesGetEmojiStickerGroupsRequest {}
_ bin .BareEncoder = &MessagesGetEmojiStickerGroupsRequest {}
_ bin .BareDecoder = &MessagesGetEmojiStickerGroupsRequest {}
)
func (g *MessagesGetEmojiStickerGroupsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Hash == 0 ) {
return false
}
return true
}
func (g *MessagesGetEmojiStickerGroupsRequest ) String () string {
if g == nil {
return "MessagesGetEmojiStickerGroupsRequest(nil)"
}
type Alias MessagesGetEmojiStickerGroupsRequest
return fmt .Sprintf ("MessagesGetEmojiStickerGroupsRequest%+v" , Alias (*g ))
}
func (g *MessagesGetEmojiStickerGroupsRequest ) FillFrom (from interface {
GetHash () (value int )
}) {
g .Hash = from .GetHash ()
}
func (*MessagesGetEmojiStickerGroupsRequest ) TypeID () uint32 {
return MessagesGetEmojiStickerGroupsRequestTypeID
}
func (*MessagesGetEmojiStickerGroupsRequest ) TypeName () string {
return "messages.getEmojiStickerGroups"
}
func (g *MessagesGetEmojiStickerGroupsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "messages.getEmojiStickerGroups" ,
ID : MessagesGetEmojiStickerGroupsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Hash" ,
SchemaName : "hash" ,
},
}
return typ
}
func (g *MessagesGetEmojiStickerGroupsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode messages.getEmojiStickerGroups#1dd840f5 as nil" )
}
b .PutID (MessagesGetEmojiStickerGroupsRequestTypeID )
return g .EncodeBare (b )
}
func (g *MessagesGetEmojiStickerGroupsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode messages.getEmojiStickerGroups#1dd840f5 as nil" )
}
b .PutInt (g .Hash )
return nil
}
func (g *MessagesGetEmojiStickerGroupsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode messages.getEmojiStickerGroups#1dd840f5 to nil" )
}
if err := b .ConsumeID (MessagesGetEmojiStickerGroupsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode messages.getEmojiStickerGroups#1dd840f5: %w" , err )
}
return g .DecodeBare (b )
}
func (g *MessagesGetEmojiStickerGroupsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode messages.getEmojiStickerGroups#1dd840f5 to nil" )
}
{
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode messages.getEmojiStickerGroups#1dd840f5: field hash: %w" , err )
}
g .Hash = value
}
return nil
}
func (g *MessagesGetEmojiStickerGroupsRequest ) GetHash () (value int ) {
if g == nil {
return
}
return g .Hash
}
func (c *Client ) MessagesGetEmojiStickerGroups (ctx context .Context , hash int ) (MessagesEmojiGroupsClass , error ) {
var result MessagesEmojiGroupsBox
request := &MessagesGetEmojiStickerGroupsRequest {
Hash : hash ,
}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .EmojiGroups , nil
}
The pages are generated with Golds v0.8.4 . (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds .