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 AccountSaveAutoDownloadSettingsRequest struct {
Flags bin .Fields
Low bool
High bool
Settings AutoDownloadSettings
}
const AccountSaveAutoDownloadSettingsRequestTypeID = 0x76f36233
var (
_ bin .Encoder = &AccountSaveAutoDownloadSettingsRequest {}
_ bin .Decoder = &AccountSaveAutoDownloadSettingsRequest {}
_ bin .BareEncoder = &AccountSaveAutoDownloadSettingsRequest {}
_ bin .BareDecoder = &AccountSaveAutoDownloadSettingsRequest {}
)
func (s *AccountSaveAutoDownloadSettingsRequest ) Zero () bool {
if s == nil {
return true
}
if !(s .Flags .Zero ()) {
return false
}
if !(s .Low == false ) {
return false
}
if !(s .High == false ) {
return false
}
if !(s .Settings .Zero ()) {
return false
}
return true
}
func (s *AccountSaveAutoDownloadSettingsRequest ) String () string {
if s == nil {
return "AccountSaveAutoDownloadSettingsRequest(nil)"
}
type Alias AccountSaveAutoDownloadSettingsRequest
return fmt .Sprintf ("AccountSaveAutoDownloadSettingsRequest%+v" , Alias (*s ))
}
func (s *AccountSaveAutoDownloadSettingsRequest ) FillFrom (from interface {
GetLow () (value bool )
GetHigh () (value bool )
GetSettings () (value AutoDownloadSettings )
}) {
s .Low = from .GetLow ()
s .High = from .GetHigh ()
s .Settings = from .GetSettings ()
}
func (*AccountSaveAutoDownloadSettingsRequest ) TypeID () uint32 {
return AccountSaveAutoDownloadSettingsRequestTypeID
}
func (*AccountSaveAutoDownloadSettingsRequest ) TypeName () string {
return "account.saveAutoDownloadSettings"
}
func (s *AccountSaveAutoDownloadSettingsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.saveAutoDownloadSettings" ,
ID : AccountSaveAutoDownloadSettingsRequestTypeID ,
}
if s == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Low" ,
SchemaName : "low" ,
Null : !s .Flags .Has (0 ),
},
{
Name : "High" ,
SchemaName : "high" ,
Null : !s .Flags .Has (1 ),
},
{
Name : "Settings" ,
SchemaName : "settings" ,
},
}
return typ
}
func (s *AccountSaveAutoDownloadSettingsRequest ) SetFlags () {
if !(s .Low == false ) {
s .Flags .Set (0 )
}
if !(s .High == false ) {
s .Flags .Set (1 )
}
}
func (s *AccountSaveAutoDownloadSettingsRequest ) Encode (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't encode account.saveAutoDownloadSettings#76f36233 as nil" )
}
b .PutID (AccountSaveAutoDownloadSettingsRequestTypeID )
return s .EncodeBare (b )
}
func (s *AccountSaveAutoDownloadSettingsRequest ) EncodeBare (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't encode account.saveAutoDownloadSettings#76f36233 as nil" )
}
s .SetFlags ()
if err := s .Flags .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.saveAutoDownloadSettings#76f36233: field flags: %w" , err )
}
if err := s .Settings .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.saveAutoDownloadSettings#76f36233: field settings: %w" , err )
}
return nil
}
func (s *AccountSaveAutoDownloadSettingsRequest ) Decode (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't decode account.saveAutoDownloadSettings#76f36233 to nil" )
}
if err := b .ConsumeID (AccountSaveAutoDownloadSettingsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.saveAutoDownloadSettings#76f36233: %w" , err )
}
return s .DecodeBare (b )
}
func (s *AccountSaveAutoDownloadSettingsRequest ) DecodeBare (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't decode account.saveAutoDownloadSettings#76f36233 to nil" )
}
{
if err := s .Flags .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode account.saveAutoDownloadSettings#76f36233: field flags: %w" , err )
}
}
s .Low = s .Flags .Has (0 )
s .High = s .Flags .Has (1 )
{
if err := s .Settings .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode account.saveAutoDownloadSettings#76f36233: field settings: %w" , err )
}
}
return nil
}
func (s *AccountSaveAutoDownloadSettingsRequest ) SetLow (value bool ) {
if value {
s .Flags .Set (0 )
s .Low = true
} else {
s .Flags .Unset (0 )
s .Low = false
}
}
func (s *AccountSaveAutoDownloadSettingsRequest ) GetLow () (value bool ) {
if s == nil {
return
}
return s .Flags .Has (0 )
}
func (s *AccountSaveAutoDownloadSettingsRequest ) SetHigh (value bool ) {
if value {
s .Flags .Set (1 )
s .High = true
} else {
s .Flags .Unset (1 )
s .High = false
}
}
func (s *AccountSaveAutoDownloadSettingsRequest ) GetHigh () (value bool ) {
if s == nil {
return
}
return s .Flags .Has (1 )
}
func (s *AccountSaveAutoDownloadSettingsRequest ) GetSettings () (value AutoDownloadSettings ) {
if s == nil {
return
}
return s .Settings
}
func (c *Client ) AccountSaveAutoDownloadSettings (ctx context .Context , request *AccountSaveAutoDownloadSettingsRequest ) (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 .