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 MessagesGetEmojiProfilePhotoGroupsRequest struct {
Hash int
}
const MessagesGetEmojiProfilePhotoGroupsRequestTypeID = 0x21a548f3
var (
_ bin .Encoder = &MessagesGetEmojiProfilePhotoGroupsRequest {}
_ bin .Decoder = &MessagesGetEmojiProfilePhotoGroupsRequest {}
_ bin .BareEncoder = &MessagesGetEmojiProfilePhotoGroupsRequest {}
_ bin .BareDecoder = &MessagesGetEmojiProfilePhotoGroupsRequest {}
)
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Hash == 0 ) {
return false
}
return true
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) String () string {
if g == nil {
return "MessagesGetEmojiProfilePhotoGroupsRequest(nil)"
}
type Alias MessagesGetEmojiProfilePhotoGroupsRequest
return fmt .Sprintf ("MessagesGetEmojiProfilePhotoGroupsRequest%+v" , Alias (*g ))
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) FillFrom (from interface {
GetHash () (value int )
}) {
g .Hash = from .GetHash ()
}
func (*MessagesGetEmojiProfilePhotoGroupsRequest ) TypeID () uint32 {
return MessagesGetEmojiProfilePhotoGroupsRequestTypeID
}
func (*MessagesGetEmojiProfilePhotoGroupsRequest ) TypeName () string {
return "messages.getEmojiProfilePhotoGroups"
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "messages.getEmojiProfilePhotoGroups" ,
ID : MessagesGetEmojiProfilePhotoGroupsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Hash" ,
SchemaName : "hash" ,
},
}
return typ
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode messages.getEmojiProfilePhotoGroups#21a548f3 as nil" )
}
b .PutID (MessagesGetEmojiProfilePhotoGroupsRequestTypeID )
return g .EncodeBare (b )
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode messages.getEmojiProfilePhotoGroups#21a548f3 as nil" )
}
b .PutInt (g .Hash )
return nil
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode messages.getEmojiProfilePhotoGroups#21a548f3 to nil" )
}
if err := b .ConsumeID (MessagesGetEmojiProfilePhotoGroupsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode messages.getEmojiProfilePhotoGroups#21a548f3: %w" , err )
}
return g .DecodeBare (b )
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode messages.getEmojiProfilePhotoGroups#21a548f3 to nil" )
}
{
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode messages.getEmojiProfilePhotoGroups#21a548f3: field hash: %w" , err )
}
g .Hash = value
}
return nil
}
func (g *MessagesGetEmojiProfilePhotoGroupsRequest ) GetHash () (value int ) {
if g == nil {
return
}
return g .Hash
}
func (c *Client ) MessagesGetEmojiProfilePhotoGroups (ctx context .Context , hash int ) (MessagesEmojiGroupsClass , error ) {
var result MessagesEmojiGroupsBox
request := &MessagesGetEmojiProfilePhotoGroupsRequest {
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.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 .