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 HelpSetBotUpdatesStatusRequest struct {
PendingUpdatesCount int
Message string
}
const HelpSetBotUpdatesStatusRequestTypeID = 0xec22cfcd
var (
_ bin .Encoder = &HelpSetBotUpdatesStatusRequest {}
_ bin .Decoder = &HelpSetBotUpdatesStatusRequest {}
_ bin .BareEncoder = &HelpSetBotUpdatesStatusRequest {}
_ bin .BareDecoder = &HelpSetBotUpdatesStatusRequest {}
)
func (s *HelpSetBotUpdatesStatusRequest ) Zero () bool {
if s == nil {
return true
}
if !(s .PendingUpdatesCount == 0 ) {
return false
}
if !(s .Message == "" ) {
return false
}
return true
}
func (s *HelpSetBotUpdatesStatusRequest ) String () string {
if s == nil {
return "HelpSetBotUpdatesStatusRequest(nil)"
}
type Alias HelpSetBotUpdatesStatusRequest
return fmt .Sprintf ("HelpSetBotUpdatesStatusRequest%+v" , Alias (*s ))
}
func (s *HelpSetBotUpdatesStatusRequest ) FillFrom (from interface {
GetPendingUpdatesCount () (value int )
GetMessage () (value string )
}) {
s .PendingUpdatesCount = from .GetPendingUpdatesCount ()
s .Message = from .GetMessage ()
}
func (*HelpSetBotUpdatesStatusRequest ) TypeID () uint32 {
return HelpSetBotUpdatesStatusRequestTypeID
}
func (*HelpSetBotUpdatesStatusRequest ) TypeName () string {
return "help.setBotUpdatesStatus"
}
func (s *HelpSetBotUpdatesStatusRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "help.setBotUpdatesStatus" ,
ID : HelpSetBotUpdatesStatusRequestTypeID ,
}
if s == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "PendingUpdatesCount" ,
SchemaName : "pending_updates_count" ,
},
{
Name : "Message" ,
SchemaName : "message" ,
},
}
return typ
}
func (s *HelpSetBotUpdatesStatusRequest ) Encode (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't encode help.setBotUpdatesStatus#ec22cfcd as nil" )
}
b .PutID (HelpSetBotUpdatesStatusRequestTypeID )
return s .EncodeBare (b )
}
func (s *HelpSetBotUpdatesStatusRequest ) EncodeBare (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't encode help.setBotUpdatesStatus#ec22cfcd as nil" )
}
b .PutInt (s .PendingUpdatesCount )
b .PutString (s .Message )
return nil
}
func (s *HelpSetBotUpdatesStatusRequest ) Decode (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't decode help.setBotUpdatesStatus#ec22cfcd to nil" )
}
if err := b .ConsumeID (HelpSetBotUpdatesStatusRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode help.setBotUpdatesStatus#ec22cfcd: %w" , err )
}
return s .DecodeBare (b )
}
func (s *HelpSetBotUpdatesStatusRequest ) DecodeBare (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't decode help.setBotUpdatesStatus#ec22cfcd to nil" )
}
{
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode help.setBotUpdatesStatus#ec22cfcd: field pending_updates_count: %w" , err )
}
s .PendingUpdatesCount = value
}
{
value , err := b .String ()
if err != nil {
return fmt .Errorf ("unable to decode help.setBotUpdatesStatus#ec22cfcd: field message: %w" , err )
}
s .Message = value
}
return nil
}
func (s *HelpSetBotUpdatesStatusRequest ) GetPendingUpdatesCount () (value int ) {
if s == nil {
return
}
return s .PendingUpdatesCount
}
func (s *HelpSetBotUpdatesStatusRequest ) GetMessage () (value string ) {
if s == nil {
return
}
return s .Message
}
func (c *Client ) HelpSetBotUpdatesStatus (ctx context .Context , request *HelpSetBotUpdatesStatusRequest ) (bool , error ) {
var result BoolBox
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 .