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

212 lines
5.1 KiB
Go

// Code generated by gotdgen, DO NOT EDIT.
package tg
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{}
)
// PhoneLeaveGroupCallRequest represents TL type `phone.leaveGroupCall#500377f9`.
// Leave a group call
//
// See https://core.telegram.org/method/phone.leaveGroupCall for reference.
type PhoneLeaveGroupCallRequest struct {
// The group call
Call InputGroupCallClass
// Your source ID
Source int
}
// PhoneLeaveGroupCallRequestTypeID is TL type id of PhoneLeaveGroupCallRequest.
const PhoneLeaveGroupCallRequestTypeID = 0x500377f9
// Ensuring interfaces in compile-time for PhoneLeaveGroupCallRequest.
var (
_ bin.Encoder = &PhoneLeaveGroupCallRequest{}
_ bin.Decoder = &PhoneLeaveGroupCallRequest{}
_ bin.BareEncoder = &PhoneLeaveGroupCallRequest{}
_ bin.BareDecoder = &PhoneLeaveGroupCallRequest{}
)
func (l *PhoneLeaveGroupCallRequest) Zero() bool {
if l == nil {
return true
}
if !(l.Call == nil) {
return false
}
if !(l.Source == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (l *PhoneLeaveGroupCallRequest) String() string {
if l == nil {
return "PhoneLeaveGroupCallRequest(nil)"
}
type Alias PhoneLeaveGroupCallRequest
return fmt.Sprintf("PhoneLeaveGroupCallRequest%+v", Alias(*l))
}
// FillFrom fills PhoneLeaveGroupCallRequest from given interface.
func (l *PhoneLeaveGroupCallRequest) FillFrom(from interface {
GetCall() (value InputGroupCallClass)
GetSource() (value int)
}) {
l.Call = from.GetCall()
l.Source = from.GetSource()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhoneLeaveGroupCallRequest) TypeID() uint32 {
return PhoneLeaveGroupCallRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhoneLeaveGroupCallRequest) TypeName() string {
return "phone.leaveGroupCall"
}
// TypeInfo returns info about TL type.
func (l *PhoneLeaveGroupCallRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "phone.leaveGroupCall",
ID: PhoneLeaveGroupCallRequestTypeID,
}
if l == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Call",
SchemaName: "call",
},
{
Name: "Source",
SchemaName: "source",
},
}
return typ
}
// Encode implements bin.Encoder.
func (l *PhoneLeaveGroupCallRequest) Encode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode phone.leaveGroupCall#500377f9 as nil")
}
b.PutID(PhoneLeaveGroupCallRequestTypeID)
return l.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (l *PhoneLeaveGroupCallRequest) EncodeBare(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode phone.leaveGroupCall#500377f9 as nil")
}
if l.Call == nil {
return fmt.Errorf("unable to encode phone.leaveGroupCall#500377f9: field call is nil")
}
if err := l.Call.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.leaveGroupCall#500377f9: field call: %w", err)
}
b.PutInt(l.Source)
return nil
}
// Decode implements bin.Decoder.
func (l *PhoneLeaveGroupCallRequest) Decode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode phone.leaveGroupCall#500377f9 to nil")
}
if err := b.ConsumeID(PhoneLeaveGroupCallRequestTypeID); err != nil {
return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: %w", err)
}
return l.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (l *PhoneLeaveGroupCallRequest) DecodeBare(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode phone.leaveGroupCall#500377f9 to nil")
}
{
value, err := DecodeInputGroupCall(b)
if err != nil {
return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: field call: %w", err)
}
l.Call = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: field source: %w", err)
}
l.Source = value
}
return nil
}
// GetCall returns value of Call field.
func (l *PhoneLeaveGroupCallRequest) GetCall() (value InputGroupCallClass) {
if l == nil {
return
}
return l.Call
}
// GetSource returns value of Source field.
func (l *PhoneLeaveGroupCallRequest) GetSource() (value int) {
if l == nil {
return
}
return l.Source
}
// PhoneLeaveGroupCall invokes method phone.leaveGroupCall#500377f9 returning error if any.
// Leave a group call
//
// Possible errors:
//
// 400 GROUPCALL_INVALID: The specified group call is invalid.
//
// See https://core.telegram.org/method/phone.leaveGroupCall for reference.
func (c *Client) PhoneLeaveGroupCall(ctx context.Context, request *PhoneLeaveGroupCallRequest) (UpdatesClass, error) {
var result UpdatesBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return result.Updates, nil
}