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 AccountSetPrivacyRequest struct {
Key InputPrivacyKeyClass
Rules []InputPrivacyRuleClass
}
const AccountSetPrivacyRequestTypeID = 0xc9f81ce8
var (
_ bin .Encoder = &AccountSetPrivacyRequest {}
_ bin .Decoder = &AccountSetPrivacyRequest {}
_ bin .BareEncoder = &AccountSetPrivacyRequest {}
_ bin .BareDecoder = &AccountSetPrivacyRequest {}
)
func (s *AccountSetPrivacyRequest ) Zero () bool {
if s == nil {
return true
}
if !(s .Key == nil ) {
return false
}
if !(s .Rules == nil ) {
return false
}
return true
}
func (s *AccountSetPrivacyRequest ) String () string {
if s == nil {
return "AccountSetPrivacyRequest(nil)"
}
type Alias AccountSetPrivacyRequest
return fmt .Sprintf ("AccountSetPrivacyRequest%+v" , Alias (*s ))
}
func (s *AccountSetPrivacyRequest ) FillFrom (from interface {
GetKey () (value InputPrivacyKeyClass )
GetRules () (value []InputPrivacyRuleClass )
}) {
s .Key = from .GetKey ()
s .Rules = from .GetRules ()
}
func (*AccountSetPrivacyRequest ) TypeID () uint32 {
return AccountSetPrivacyRequestTypeID
}
func (*AccountSetPrivacyRequest ) TypeName () string {
return "account.setPrivacy"
}
func (s *AccountSetPrivacyRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.setPrivacy" ,
ID : AccountSetPrivacyRequestTypeID ,
}
if s == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Key" ,
SchemaName : "key" ,
},
{
Name : "Rules" ,
SchemaName : "rules" ,
},
}
return typ
}
func (s *AccountSetPrivacyRequest ) Encode (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't encode account.setPrivacy#c9f81ce8 as nil" )
}
b .PutID (AccountSetPrivacyRequestTypeID )
return s .EncodeBare (b )
}
func (s *AccountSetPrivacyRequest ) EncodeBare (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't encode account.setPrivacy#c9f81ce8 as nil" )
}
if s .Key == nil {
return fmt .Errorf ("unable to encode account.setPrivacy#c9f81ce8: field key is nil" )
}
if err := s .Key .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.setPrivacy#c9f81ce8: field key: %w" , err )
}
b .PutVectorHeader (len (s .Rules ))
for idx , v := range s .Rules {
if v == nil {
return fmt .Errorf ("unable to encode account.setPrivacy#c9f81ce8: field rules element with index %d is nil" , idx )
}
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.setPrivacy#c9f81ce8: field rules element with index %d: %w" , idx , err )
}
}
return nil
}
func (s *AccountSetPrivacyRequest ) Decode (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't decode account.setPrivacy#c9f81ce8 to nil" )
}
if err := b .ConsumeID (AccountSetPrivacyRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.setPrivacy#c9f81ce8: %w" , err )
}
return s .DecodeBare (b )
}
func (s *AccountSetPrivacyRequest ) DecodeBare (b *bin .Buffer ) error {
if s == nil {
return fmt .Errorf ("can't decode account.setPrivacy#c9f81ce8 to nil" )
}
{
value , err := DecodeInputPrivacyKey (b )
if err != nil {
return fmt .Errorf ("unable to decode account.setPrivacy#c9f81ce8: field key: %w" , err )
}
s .Key = value
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode account.setPrivacy#c9f81ce8: field rules: %w" , err )
}
if headerLen > 0 {
s .Rules = make ([]InputPrivacyRuleClass , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
value , err := DecodeInputPrivacyRule (b )
if err != nil {
return fmt .Errorf ("unable to decode account.setPrivacy#c9f81ce8: field rules: %w" , err )
}
s .Rules = append (s .Rules , value )
}
}
return nil
}
func (s *AccountSetPrivacyRequest ) GetKey () (value InputPrivacyKeyClass ) {
if s == nil {
return
}
return s .Key
}
func (s *AccountSetPrivacyRequest ) GetRules () (value []InputPrivacyRuleClass ) {
if s == nil {
return
}
return s .Rules
}
func (s *AccountSetPrivacyRequest ) MapRules () (value InputPrivacyRuleClassArray ) {
return InputPrivacyRuleClassArray (s .Rules )
}
func (c *Client ) AccountSetPrivacy (ctx context .Context , request *AccountSetPrivacyRequest ) (*AccountPrivacyRules , error ) {
var result AccountPrivacyRules
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return &result , 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 .