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 ChannelsGetParticipantRequest struct {
Channel InputChannelClass
Participant InputPeerClass
}
const ChannelsGetParticipantRequestTypeID = 0xa0ab6cc6
var (
_ bin .Encoder = &ChannelsGetParticipantRequest {}
_ bin .Decoder = &ChannelsGetParticipantRequest {}
_ bin .BareEncoder = &ChannelsGetParticipantRequest {}
_ bin .BareDecoder = &ChannelsGetParticipantRequest {}
)
func (g *ChannelsGetParticipantRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Channel == nil ) {
return false
}
if !(g .Participant == nil ) {
return false
}
return true
}
func (g *ChannelsGetParticipantRequest ) String () string {
if g == nil {
return "ChannelsGetParticipantRequest(nil)"
}
type Alias ChannelsGetParticipantRequest
return fmt .Sprintf ("ChannelsGetParticipantRequest%+v" , Alias (*g ))
}
func (g *ChannelsGetParticipantRequest ) FillFrom (from interface {
GetChannel () (value InputChannelClass )
GetParticipant () (value InputPeerClass )
}) {
g .Channel = from .GetChannel ()
g .Participant = from .GetParticipant ()
}
func (*ChannelsGetParticipantRequest ) TypeID () uint32 {
return ChannelsGetParticipantRequestTypeID
}
func (*ChannelsGetParticipantRequest ) TypeName () string {
return "channels.getParticipant"
}
func (g *ChannelsGetParticipantRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "channels.getParticipant" ,
ID : ChannelsGetParticipantRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Channel" ,
SchemaName : "channel" ,
},
{
Name : "Participant" ,
SchemaName : "participant" ,
},
}
return typ
}
func (g *ChannelsGetParticipantRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode channels.getParticipant#a0ab6cc6 as nil" )
}
b .PutID (ChannelsGetParticipantRequestTypeID )
return g .EncodeBare (b )
}
func (g *ChannelsGetParticipantRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode channels.getParticipant#a0ab6cc6 as nil" )
}
if g .Channel == nil {
return fmt .Errorf ("unable to encode channels.getParticipant#a0ab6cc6: field channel is nil" )
}
if err := g .Channel .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode channels.getParticipant#a0ab6cc6: field channel: %w" , err )
}
if g .Participant == nil {
return fmt .Errorf ("unable to encode channels.getParticipant#a0ab6cc6: field participant is nil" )
}
if err := g .Participant .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode channels.getParticipant#a0ab6cc6: field participant: %w" , err )
}
return nil
}
func (g *ChannelsGetParticipantRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode channels.getParticipant#a0ab6cc6 to nil" )
}
if err := b .ConsumeID (ChannelsGetParticipantRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode channels.getParticipant#a0ab6cc6: %w" , err )
}
return g .DecodeBare (b )
}
func (g *ChannelsGetParticipantRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode channels.getParticipant#a0ab6cc6 to nil" )
}
{
value , err := DecodeInputChannel (b )
if err != nil {
return fmt .Errorf ("unable to decode channels.getParticipant#a0ab6cc6: field channel: %w" , err )
}
g .Channel = value
}
{
value , err := DecodeInputPeer (b )
if err != nil {
return fmt .Errorf ("unable to decode channels.getParticipant#a0ab6cc6: field participant: %w" , err )
}
g .Participant = value
}
return nil
}
func (g *ChannelsGetParticipantRequest ) GetChannel () (value InputChannelClass ) {
if g == nil {
return
}
return g .Channel
}
func (g *ChannelsGetParticipantRequest ) GetParticipant () (value InputPeerClass ) {
if g == nil {
return
}
return g .Participant
}
func (g *ChannelsGetParticipantRequest ) GetChannelAsNotEmpty () (NotEmptyInputChannel , bool ) {
return g .Channel .AsNotEmpty ()
}
func (c *Client ) ChannelsGetParticipant (ctx context .Context , request *ChannelsGetParticipantRequest ) (*ChannelsChannelParticipant , error ) {
var result ChannelsChannelParticipant
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 .