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