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 ChannelsGetSponsoredMessagesRequest struct {
Channel InputChannelClass
}
const ChannelsGetSponsoredMessagesRequestTypeID = 0xec210fbf
var (
_ bin .Encoder = &ChannelsGetSponsoredMessagesRequest {}
_ bin .Decoder = &ChannelsGetSponsoredMessagesRequest {}
_ bin .BareEncoder = &ChannelsGetSponsoredMessagesRequest {}
_ bin .BareDecoder = &ChannelsGetSponsoredMessagesRequest {}
)
func (g *ChannelsGetSponsoredMessagesRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Channel == nil ) {
return false
}
return true
}
func (g *ChannelsGetSponsoredMessagesRequest ) String () string {
if g == nil {
return "ChannelsGetSponsoredMessagesRequest(nil)"
}
type Alias ChannelsGetSponsoredMessagesRequest
return fmt .Sprintf ("ChannelsGetSponsoredMessagesRequest%+v" , Alias (*g ))
}
func (g *ChannelsGetSponsoredMessagesRequest ) FillFrom (from interface {
GetChannel () (value InputChannelClass )
}) {
g .Channel = from .GetChannel ()
}
func (*ChannelsGetSponsoredMessagesRequest ) TypeID () uint32 {
return ChannelsGetSponsoredMessagesRequestTypeID
}
func (*ChannelsGetSponsoredMessagesRequest ) TypeName () string {
return "channels.getSponsoredMessages"
}
func (g *ChannelsGetSponsoredMessagesRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "channels.getSponsoredMessages" ,
ID : ChannelsGetSponsoredMessagesRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Channel" ,
SchemaName : "channel" ,
},
}
return typ
}
func (g *ChannelsGetSponsoredMessagesRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode channels.getSponsoredMessages#ec210fbf as nil" )
}
b .PutID (ChannelsGetSponsoredMessagesRequestTypeID )
return g .EncodeBare (b )
}
func (g *ChannelsGetSponsoredMessagesRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode channels.getSponsoredMessages#ec210fbf as nil" )
}
if g .Channel == nil {
return fmt .Errorf ("unable to encode channels.getSponsoredMessages#ec210fbf: field channel is nil" )
}
if err := g .Channel .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode channels.getSponsoredMessages#ec210fbf: field channel: %w" , err )
}
return nil
}
func (g *ChannelsGetSponsoredMessagesRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode channels.getSponsoredMessages#ec210fbf to nil" )
}
if err := b .ConsumeID (ChannelsGetSponsoredMessagesRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode channels.getSponsoredMessages#ec210fbf: %w" , err )
}
return g .DecodeBare (b )
}
func (g *ChannelsGetSponsoredMessagesRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode channels.getSponsoredMessages#ec210fbf to nil" )
}
{
value , err := DecodeInputChannel (b )
if err != nil {
return fmt .Errorf ("unable to decode channels.getSponsoredMessages#ec210fbf: field channel: %w" , err )
}
g .Channel = value
}
return nil
}
func (g *ChannelsGetSponsoredMessagesRequest ) GetChannel () (value InputChannelClass ) {
if g == nil {
return
}
return g .Channel
}
func (g *ChannelsGetSponsoredMessagesRequest ) GetChannelAsNotEmpty () (NotEmptyInputChannel , bool ) {
return g .Channel .AsNotEmpty ()
}
func (c *Client ) ChannelsGetSponsoredMessages (ctx context .Context , channel InputChannelClass ) (MessagesSponsoredMessagesClass , error ) {
var result MessagesSponsoredMessagesBox
request := &ChannelsGetSponsoredMessagesRequest {
Channel : channel ,
}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .SponsoredMessages , 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 .