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 AccountGetNotifySettingsRequest struct {
Peer InputNotifyPeerClass
}
const AccountGetNotifySettingsRequestTypeID = 0x12b3ad31
var (
_ bin .Encoder = &AccountGetNotifySettingsRequest {}
_ bin .Decoder = &AccountGetNotifySettingsRequest {}
_ bin .BareEncoder = &AccountGetNotifySettingsRequest {}
_ bin .BareDecoder = &AccountGetNotifySettingsRequest {}
)
func (g *AccountGetNotifySettingsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Peer == nil ) {
return false
}
return true
}
func (g *AccountGetNotifySettingsRequest ) String () string {
if g == nil {
return "AccountGetNotifySettingsRequest(nil)"
}
type Alias AccountGetNotifySettingsRequest
return fmt .Sprintf ("AccountGetNotifySettingsRequest%+v" , Alias (*g ))
}
func (g *AccountGetNotifySettingsRequest ) FillFrom (from interface {
GetPeer () (value InputNotifyPeerClass )
}) {
g .Peer = from .GetPeer ()
}
func (*AccountGetNotifySettingsRequest ) TypeID () uint32 {
return AccountGetNotifySettingsRequestTypeID
}
func (*AccountGetNotifySettingsRequest ) TypeName () string {
return "account.getNotifySettings"
}
func (g *AccountGetNotifySettingsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.getNotifySettings" ,
ID : AccountGetNotifySettingsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Peer" ,
SchemaName : "peer" ,
},
}
return typ
}
func (g *AccountGetNotifySettingsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode account.getNotifySettings#12b3ad31 as nil" )
}
b .PutID (AccountGetNotifySettingsRequestTypeID )
return g .EncodeBare (b )
}
func (g *AccountGetNotifySettingsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode account.getNotifySettings#12b3ad31 as nil" )
}
if g .Peer == nil {
return fmt .Errorf ("unable to encode account.getNotifySettings#12b3ad31: field peer is nil" )
}
if err := g .Peer .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.getNotifySettings#12b3ad31: field peer: %w" , err )
}
return nil
}
func (g *AccountGetNotifySettingsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode account.getNotifySettings#12b3ad31 to nil" )
}
if err := b .ConsumeID (AccountGetNotifySettingsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.getNotifySettings#12b3ad31: %w" , err )
}
return g .DecodeBare (b )
}
func (g *AccountGetNotifySettingsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode account.getNotifySettings#12b3ad31 to nil" )
}
{
value , err := DecodeInputNotifyPeer (b )
if err != nil {
return fmt .Errorf ("unable to decode account.getNotifySettings#12b3ad31: field peer: %w" , err )
}
g .Peer = value
}
return nil
}
func (g *AccountGetNotifySettingsRequest ) GetPeer () (value InputNotifyPeerClass ) {
if g == nil {
return
}
return g .Peer
}
func (c *Client ) AccountGetNotifySettings (ctx context .Context , peer InputNotifyPeerClass ) (*PeerNotifySettings , error ) {
var result PeerNotifySettings
request := &AccountGetNotifySettingsRequest {
Peer : peer ,
}
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 .