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