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 AccountContentSettings struct {
Flags bin .Fields
SensitiveEnabled bool
SensitiveCanChange bool
}
const AccountContentSettingsTypeID = 0x57e28221
var (
_ bin .Encoder = &AccountContentSettings {}
_ bin .Decoder = &AccountContentSettings {}
_ bin .BareEncoder = &AccountContentSettings {}
_ bin .BareDecoder = &AccountContentSettings {}
)
func (c *AccountContentSettings ) Zero () bool {
if c == nil {
return true
}
if !(c .Flags .Zero ()) {
return false
}
if !(c .SensitiveEnabled == false ) {
return false
}
if !(c .SensitiveCanChange == false ) {
return false
}
return true
}
func (c *AccountContentSettings ) String () string {
if c == nil {
return "AccountContentSettings(nil)"
}
type Alias AccountContentSettings
return fmt .Sprintf ("AccountContentSettings%+v" , Alias (*c ))
}
func (c *AccountContentSettings ) FillFrom (from interface {
GetSensitiveEnabled () (value bool )
GetSensitiveCanChange () (value bool )
}) {
c .SensitiveEnabled = from .GetSensitiveEnabled ()
c .SensitiveCanChange = from .GetSensitiveCanChange ()
}
func (*AccountContentSettings ) TypeID () uint32 {
return AccountContentSettingsTypeID
}
func (*AccountContentSettings ) TypeName () string {
return "account.contentSettings"
}
func (c *AccountContentSettings ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.contentSettings" ,
ID : AccountContentSettingsTypeID ,
}
if c == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "SensitiveEnabled" ,
SchemaName : "sensitive_enabled" ,
Null : !c .Flags .Has (0 ),
},
{
Name : "SensitiveCanChange" ,
SchemaName : "sensitive_can_change" ,
Null : !c .Flags .Has (1 ),
},
}
return typ
}
func (c *AccountContentSettings ) SetFlags () {
if !(c .SensitiveEnabled == false ) {
c .Flags .Set (0 )
}
if !(c .SensitiveCanChange == false ) {
c .Flags .Set (1 )
}
}
func (c *AccountContentSettings ) Encode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode account.contentSettings#57e28221 as nil" )
}
b .PutID (AccountContentSettingsTypeID )
return c .EncodeBare (b )
}
func (c *AccountContentSettings ) EncodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode account.contentSettings#57e28221 as nil" )
}
c .SetFlags ()
if err := c .Flags .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.contentSettings#57e28221: field flags: %w" , err )
}
return nil
}
func (c *AccountContentSettings ) Decode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode account.contentSettings#57e28221 to nil" )
}
if err := b .ConsumeID (AccountContentSettingsTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.contentSettings#57e28221: %w" , err )
}
return c .DecodeBare (b )
}
func (c *AccountContentSettings ) DecodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode account.contentSettings#57e28221 to nil" )
}
{
if err := c .Flags .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode account.contentSettings#57e28221: field flags: %w" , err )
}
}
c .SensitiveEnabled = c .Flags .Has (0 )
c .SensitiveCanChange = c .Flags .Has (1 )
return nil
}
func (c *AccountContentSettings ) SetSensitiveEnabled (value bool ) {
if value {
c .Flags .Set (0 )
c .SensitiveEnabled = true
} else {
c .Flags .Unset (0 )
c .SensitiveEnabled = false
}
}
func (c *AccountContentSettings ) GetSensitiveEnabled () (value bool ) {
if c == nil {
return
}
return c .Flags .Has (0 )
}
func (c *AccountContentSettings ) SetSensitiveCanChange (value bool ) {
if value {
c .Flags .Set (1 )
c .SensitiveCanChange = true
} else {
c .Flags .Unset (1 )
c .SensitiveCanChange = false
}
}
func (c *AccountContentSettings ) GetSensitiveCanChange () (value bool ) {
if c == nil {
return
}
return c .Flags .Has (1 )
}
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 .