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