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