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 AccountGetNotifyExceptionsRequest struct {
Flags bin .Fields
CompareSound bool
CompareStories bool
Peer InputNotifyPeerClass
}
const AccountGetNotifyExceptionsRequestTypeID = 0x53577479
var (
_ bin .Encoder = &AccountGetNotifyExceptionsRequest {}
_ bin .Decoder = &AccountGetNotifyExceptionsRequest {}
_ bin .BareEncoder = &AccountGetNotifyExceptionsRequest {}
_ bin .BareDecoder = &AccountGetNotifyExceptionsRequest {}
)
func (g *AccountGetNotifyExceptionsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Flags .Zero ()) {
return false
}
if !(g .CompareSound == false ) {
return false
}
if !(g .CompareStories == false ) {
return false
}
if !(g .Peer == nil ) {
return false
}
return true
}
func (g *AccountGetNotifyExceptionsRequest ) String () string {
if g == nil {
return "AccountGetNotifyExceptionsRequest(nil)"
}
type Alias AccountGetNotifyExceptionsRequest
return fmt .Sprintf ("AccountGetNotifyExceptionsRequest%+v" , Alias (*g ))
}
func (g *AccountGetNotifyExceptionsRequest ) FillFrom (from interface {
GetCompareSound () (value bool )
GetCompareStories () (value bool )
GetPeer () (value InputNotifyPeerClass , ok bool )
}) {
g .CompareSound = from .GetCompareSound ()
g .CompareStories = from .GetCompareStories ()
if val , ok := from .GetPeer (); ok {
g .Peer = val
}
}
func (*AccountGetNotifyExceptionsRequest ) TypeID () uint32 {
return AccountGetNotifyExceptionsRequestTypeID
}
func (*AccountGetNotifyExceptionsRequest ) TypeName () string {
return "account.getNotifyExceptions"
}
func (g *AccountGetNotifyExceptionsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.getNotifyExceptions" ,
ID : AccountGetNotifyExceptionsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "CompareSound" ,
SchemaName : "compare_sound" ,
Null : !g .Flags .Has (1 ),
},
{
Name : "CompareStories" ,
SchemaName : "compare_stories" ,
Null : !g .Flags .Has (2 ),
},
{
Name : "Peer" ,
SchemaName : "peer" ,
Null : !g .Flags .Has (0 ),
},
}
return typ
}
func (g *AccountGetNotifyExceptionsRequest ) SetFlags () {
if !(g .CompareSound == false ) {
g .Flags .Set (1 )
}
if !(g .CompareStories == false ) {
g .Flags .Set (2 )
}
if !(g .Peer == nil ) {
g .Flags .Set (0 )
}
}
func (g *AccountGetNotifyExceptionsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode account.getNotifyExceptions#53577479 as nil" )
}
b .PutID (AccountGetNotifyExceptionsRequestTypeID )
return g .EncodeBare (b )
}
func (g *AccountGetNotifyExceptionsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode account.getNotifyExceptions#53577479 as nil" )
}
g .SetFlags ()
if err := g .Flags .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.getNotifyExceptions#53577479: field flags: %w" , err )
}
if g .Flags .Has (0 ) {
if g .Peer == nil {
return fmt .Errorf ("unable to encode account.getNotifyExceptions#53577479: field peer is nil" )
}
if err := g .Peer .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.getNotifyExceptions#53577479: field peer: %w" , err )
}
}
return nil
}
func (g *AccountGetNotifyExceptionsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode account.getNotifyExceptions#53577479 to nil" )
}
if err := b .ConsumeID (AccountGetNotifyExceptionsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.getNotifyExceptions#53577479: %w" , err )
}
return g .DecodeBare (b )
}
func (g *AccountGetNotifyExceptionsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode account.getNotifyExceptions#53577479 to nil" )
}
{
if err := g .Flags .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode account.getNotifyExceptions#53577479: field flags: %w" , err )
}
}
g .CompareSound = g .Flags .Has (1 )
g .CompareStories = g .Flags .Has (2 )
if g .Flags .Has (0 ) {
value , err := DecodeInputNotifyPeer (b )
if err != nil {
return fmt .Errorf ("unable to decode account.getNotifyExceptions#53577479: field peer: %w" , err )
}
g .Peer = value
}
return nil
}
func (g *AccountGetNotifyExceptionsRequest ) SetCompareSound (value bool ) {
if value {
g .Flags .Set (1 )
g .CompareSound = true
} else {
g .Flags .Unset (1 )
g .CompareSound = false
}
}
func (g *AccountGetNotifyExceptionsRequest ) GetCompareSound () (value bool ) {
if g == nil {
return
}
return g .Flags .Has (1 )
}
func (g *AccountGetNotifyExceptionsRequest ) SetCompareStories (value bool ) {
if value {
g .Flags .Set (2 )
g .CompareStories = true
} else {
g .Flags .Unset (2 )
g .CompareStories = false
}
}
func (g *AccountGetNotifyExceptionsRequest ) GetCompareStories () (value bool ) {
if g == nil {
return
}
return g .Flags .Has (2 )
}
func (g *AccountGetNotifyExceptionsRequest ) SetPeer (value InputNotifyPeerClass ) {
g .Flags .Set (0 )
g .Peer = value
}
func (g *AccountGetNotifyExceptionsRequest ) GetPeer () (value InputNotifyPeerClass , ok bool ) {
if g == nil {
return
}
if !g .Flags .Has (0 ) {
return value , false
}
return g .Peer , true
}
func (c *Client ) AccountGetNotifyExceptions (ctx context .Context , request *AccountGetNotifyExceptionsRequest ) (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 .