Files
mautrix-telegram/pkg/gotd/tdapi/tl_leave_chat_gen.go
T
2025-06-27 20:03:37 -07:00

207 lines
4.5 KiB
Go

// Code generated by gotdgen, DO NOT EDIT.
package tdapi
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
"go.mau.fi/mautrix-telegram/pkg/gotd/tgerr"
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
_ = tdjson.Encoder{}
)
// LeaveChatRequest represents TL type `leaveChat#93377a61`.
type LeaveChatRequest struct {
// Chat identifier
ChatID int64
}
// LeaveChatRequestTypeID is TL type id of LeaveChatRequest.
const LeaveChatRequestTypeID = 0x93377a61
// Ensuring interfaces in compile-time for LeaveChatRequest.
var (
_ bin.Encoder = &LeaveChatRequest{}
_ bin.Decoder = &LeaveChatRequest{}
_ bin.BareEncoder = &LeaveChatRequest{}
_ bin.BareDecoder = &LeaveChatRequest{}
)
func (l *LeaveChatRequest) Zero() bool {
if l == nil {
return true
}
if !(l.ChatID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (l *LeaveChatRequest) String() string {
if l == nil {
return "LeaveChatRequest(nil)"
}
type Alias LeaveChatRequest
return fmt.Sprintf("LeaveChatRequest%+v", Alias(*l))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*LeaveChatRequest) TypeID() uint32 {
return LeaveChatRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*LeaveChatRequest) TypeName() string {
return "leaveChat"
}
// TypeInfo returns info about TL type.
func (l *LeaveChatRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "leaveChat",
ID: LeaveChatRequestTypeID,
}
if l == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ChatID",
SchemaName: "chat_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (l *LeaveChatRequest) Encode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode leaveChat#93377a61 as nil")
}
b.PutID(LeaveChatRequestTypeID)
return l.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (l *LeaveChatRequest) EncodeBare(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode leaveChat#93377a61 as nil")
}
b.PutInt53(l.ChatID)
return nil
}
// Decode implements bin.Decoder.
func (l *LeaveChatRequest) Decode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode leaveChat#93377a61 to nil")
}
if err := b.ConsumeID(LeaveChatRequestTypeID); err != nil {
return fmt.Errorf("unable to decode leaveChat#93377a61: %w", err)
}
return l.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (l *LeaveChatRequest) DecodeBare(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode leaveChat#93377a61 to nil")
}
{
value, err := b.Int53()
if err != nil {
return fmt.Errorf("unable to decode leaveChat#93377a61: field chat_id: %w", err)
}
l.ChatID = value
}
return nil
}
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
func (l *LeaveChatRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
if l == nil {
return fmt.Errorf("can't encode leaveChat#93377a61 as nil")
}
b.ObjStart()
b.PutID("leaveChat")
b.Comma()
b.FieldStart("chat_id")
b.PutInt53(l.ChatID)
b.Comma()
b.StripComma()
b.ObjEnd()
return nil
}
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
func (l *LeaveChatRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
if l == nil {
return fmt.Errorf("can't decode leaveChat#93377a61 to nil")
}
return b.Obj(func(b tdjson.Decoder, key []byte) error {
switch string(key) {
case tdjson.TypeField:
if err := b.ConsumeID("leaveChat"); err != nil {
return fmt.Errorf("unable to decode leaveChat#93377a61: %w", err)
}
case "chat_id":
value, err := b.Int53()
if err != nil {
return fmt.Errorf("unable to decode leaveChat#93377a61: field chat_id: %w", err)
}
l.ChatID = value
default:
return b.Skip()
}
return nil
})
}
// GetChatID returns value of ChatID field.
func (l *LeaveChatRequest) GetChatID() (value int64) {
if l == nil {
return
}
return l.ChatID
}
// LeaveChat invokes method leaveChat#93377a61 returning error if any.
func (c *Client) LeaveChat(ctx context.Context, chatid int64) error {
var ok Ok
request := &LeaveChatRequest{
ChatID: chatid,
}
if err := c.rpc.Invoke(ctx, request, &ok); err != nil {
return err
}
return nil
}