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 AccountClearRecentEmojiStatusesRequest struct {
}
const AccountClearRecentEmojiStatusesRequestTypeID = 0x18201aae
var (
_ bin .Encoder = &AccountClearRecentEmojiStatusesRequest {}
_ bin .Decoder = &AccountClearRecentEmojiStatusesRequest {}
_ bin .BareEncoder = &AccountClearRecentEmojiStatusesRequest {}
_ bin .BareDecoder = &AccountClearRecentEmojiStatusesRequest {}
)
func (c *AccountClearRecentEmojiStatusesRequest ) Zero () bool {
if c == nil {
return true
}
return true
}
func (c *AccountClearRecentEmojiStatusesRequest ) String () string {
if c == nil {
return "AccountClearRecentEmojiStatusesRequest(nil)"
}
type Alias AccountClearRecentEmojiStatusesRequest
return fmt .Sprintf ("AccountClearRecentEmojiStatusesRequest%+v" , Alias (*c ))
}
func (*AccountClearRecentEmojiStatusesRequest ) TypeID () uint32 {
return AccountClearRecentEmojiStatusesRequestTypeID
}
func (*AccountClearRecentEmojiStatusesRequest ) TypeName () string {
return "account.clearRecentEmojiStatuses"
}
func (c *AccountClearRecentEmojiStatusesRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.clearRecentEmojiStatuses" ,
ID : AccountClearRecentEmojiStatusesRequestTypeID ,
}
if c == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {}
return typ
}
func (c *AccountClearRecentEmojiStatusesRequest ) Encode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode account.clearRecentEmojiStatuses#18201aae as nil" )
}
b .PutID (AccountClearRecentEmojiStatusesRequestTypeID )
return c .EncodeBare (b )
}
func (c *AccountClearRecentEmojiStatusesRequest ) EncodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode account.clearRecentEmojiStatuses#18201aae as nil" )
}
return nil
}
func (c *AccountClearRecentEmojiStatusesRequest ) Decode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode account.clearRecentEmojiStatuses#18201aae to nil" )
}
if err := b .ConsumeID (AccountClearRecentEmojiStatusesRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.clearRecentEmojiStatuses#18201aae: %w" , err )
}
return c .DecodeBare (b )
}
func (c *AccountClearRecentEmojiStatusesRequest ) DecodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode account.clearRecentEmojiStatuses#18201aae to nil" )
}
return nil
}
func (c *Client ) AccountClearRecentEmojiStatuses (ctx context .Context ) (bool , error ) {
var result BoolBox
request := &AccountClearRecentEmojiStatusesRequest {}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return false , err
}
_ , ok := result .Bool .(*BoolTrue )
return ok , 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 .