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 MessagesDeleteRevokedExportedChatInvitesRequest struct {
Peer InputPeerClass
AdminID InputUserClass
}
const MessagesDeleteRevokedExportedChatInvitesRequestTypeID = 0x56987bd5
var (
_ bin .Encoder = &MessagesDeleteRevokedExportedChatInvitesRequest {}
_ bin .Decoder = &MessagesDeleteRevokedExportedChatInvitesRequest {}
_ bin .BareEncoder = &MessagesDeleteRevokedExportedChatInvitesRequest {}
_ bin .BareDecoder = &MessagesDeleteRevokedExportedChatInvitesRequest {}
)
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) Zero () bool {
if d == nil {
return true
}
if !(d .Peer == nil ) {
return false
}
if !(d .AdminID == nil ) {
return false
}
return true
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) String () string {
if d == nil {
return "MessagesDeleteRevokedExportedChatInvitesRequest(nil)"
}
type Alias MessagesDeleteRevokedExportedChatInvitesRequest
return fmt .Sprintf ("MessagesDeleteRevokedExportedChatInvitesRequest%+v" , Alias (*d ))
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) FillFrom (from interface {
GetPeer () (value InputPeerClass )
GetAdminID () (value InputUserClass )
}) {
d .Peer = from .GetPeer ()
d .AdminID = from .GetAdminID ()
}
func (*MessagesDeleteRevokedExportedChatInvitesRequest ) TypeID () uint32 {
return MessagesDeleteRevokedExportedChatInvitesRequestTypeID
}
func (*MessagesDeleteRevokedExportedChatInvitesRequest ) TypeName () string {
return "messages.deleteRevokedExportedChatInvites"
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "messages.deleteRevokedExportedChatInvites" ,
ID : MessagesDeleteRevokedExportedChatInvitesRequestTypeID ,
}
if d == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Peer" ,
SchemaName : "peer" ,
},
{
Name : "AdminID" ,
SchemaName : "admin_id" ,
},
}
return typ
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) Encode (b *bin .Buffer ) error {
if d == nil {
return fmt .Errorf ("can't encode messages.deleteRevokedExportedChatInvites#56987bd5 as nil" )
}
b .PutID (MessagesDeleteRevokedExportedChatInvitesRequestTypeID )
return d .EncodeBare (b )
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) EncodeBare (b *bin .Buffer ) error {
if d == nil {
return fmt .Errorf ("can't encode messages.deleteRevokedExportedChatInvites#56987bd5 as nil" )
}
if d .Peer == nil {
return fmt .Errorf ("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field peer is nil" )
}
if err := d .Peer .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field peer: %w" , err )
}
if d .AdminID == nil {
return fmt .Errorf ("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id is nil" )
}
if err := d .AdminID .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id: %w" , err )
}
return nil
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) Decode (b *bin .Buffer ) error {
if d == nil {
return fmt .Errorf ("can't decode messages.deleteRevokedExportedChatInvites#56987bd5 to nil" )
}
if err := b .ConsumeID (MessagesDeleteRevokedExportedChatInvitesRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: %w" , err )
}
return d .DecodeBare (b )
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) DecodeBare (b *bin .Buffer ) error {
if d == nil {
return fmt .Errorf ("can't decode messages.deleteRevokedExportedChatInvites#56987bd5 to nil" )
}
{
value , err := DecodeInputPeer (b )
if err != nil {
return fmt .Errorf ("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: field peer: %w" , err )
}
d .Peer = value
}
{
value , err := DecodeInputUser (b )
if err != nil {
return fmt .Errorf ("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id: %w" , err )
}
d .AdminID = value
}
return nil
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) GetPeer () (value InputPeerClass ) {
if d == nil {
return
}
return d .Peer
}
func (d *MessagesDeleteRevokedExportedChatInvitesRequest ) GetAdminID () (value InputUserClass ) {
if d == nil {
return
}
return d .AdminID
}
func (c *Client ) MessagesDeleteRevokedExportedChatInvites (ctx context .Context , request *MessagesDeleteRevokedExportedChatInvitesRequest ) (bool , error ) {
var result BoolBox
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return false , err
}
_ , ok := result .Bool .(*BoolTrue )
return ok , 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 .