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

190 lines
4.9 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{}
)
// PhoneDiscardGroupCallRequest represents TL type `phone.discardGroupCall#7a777135`.
// Terminate a group call
//
// See https://core.telegram.org/method/phone.discardGroupCall for reference.
type PhoneDiscardGroupCallRequest struct {
// The group call to terminate
Call InputGroupCallClass
}
// PhoneDiscardGroupCallRequestTypeID is TL type id of PhoneDiscardGroupCallRequest.
const PhoneDiscardGroupCallRequestTypeID = 0x7a777135
// Ensuring interfaces in compile-time for PhoneDiscardGroupCallRequest.
var (
_ bin.Encoder = &PhoneDiscardGroupCallRequest{}
_ bin.Decoder = &PhoneDiscardGroupCallRequest{}
_ bin.BareEncoder = &PhoneDiscardGroupCallRequest{}
_ bin.BareDecoder = &PhoneDiscardGroupCallRequest{}
)
func (d *PhoneDiscardGroupCallRequest) Zero() bool {
if d == nil {
return true
}
if !(d.Call == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (d *PhoneDiscardGroupCallRequest) String() string {
if d == nil {
return "PhoneDiscardGroupCallRequest(nil)"
}
type Alias PhoneDiscardGroupCallRequest
return fmt.Sprintf("PhoneDiscardGroupCallRequest%+v", Alias(*d))
}
// FillFrom fills PhoneDiscardGroupCallRequest from given interface.
func (d *PhoneDiscardGroupCallRequest) FillFrom(from interface {
GetCall() (value InputGroupCallClass)
}) {
d.Call = from.GetCall()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhoneDiscardGroupCallRequest) TypeID() uint32 {
return PhoneDiscardGroupCallRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhoneDiscardGroupCallRequest) TypeName() string {
return "phone.discardGroupCall"
}
// TypeInfo returns info about TL type.
func (d *PhoneDiscardGroupCallRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "phone.discardGroupCall",
ID: PhoneDiscardGroupCallRequestTypeID,
}
if d == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Call",
SchemaName: "call",
},
}
return typ
}
// Encode implements bin.Encoder.
func (d *PhoneDiscardGroupCallRequest) Encode(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't encode phone.discardGroupCall#7a777135 as nil")
}
b.PutID(PhoneDiscardGroupCallRequestTypeID)
return d.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (d *PhoneDiscardGroupCallRequest) EncodeBare(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't encode phone.discardGroupCall#7a777135 as nil")
}
if d.Call == nil {
return fmt.Errorf("unable to encode phone.discardGroupCall#7a777135: field call is nil")
}
if err := d.Call.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.discardGroupCall#7a777135: field call: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (d *PhoneDiscardGroupCallRequest) Decode(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't decode phone.discardGroupCall#7a777135 to nil")
}
if err := b.ConsumeID(PhoneDiscardGroupCallRequestTypeID); err != nil {
return fmt.Errorf("unable to decode phone.discardGroupCall#7a777135: %w", err)
}
return d.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (d *PhoneDiscardGroupCallRequest) DecodeBare(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't decode phone.discardGroupCall#7a777135 to nil")
}
{
value, err := DecodeInputGroupCall(b)
if err != nil {
return fmt.Errorf("unable to decode phone.discardGroupCall#7a777135: field call: %w", err)
}
d.Call = value
}
return nil
}
// GetCall returns value of Call field.
func (d *PhoneDiscardGroupCallRequest) GetCall() (value InputGroupCallClass) {
if d == nil {
return
}
return d.Call
}
// PhoneDiscardGroupCall invokes method phone.discardGroupCall#7a777135 returning error if any.
// Terminate a group call
//
// Possible errors:
//
// 400 GROUPCALL_ALREADY_DISCARDED: The group call was already discarded.
// 403 GROUPCALL_FORBIDDEN: The group call has already ended.
// 400 GROUPCALL_INVALID: The specified group call is invalid.
//
// See https://core.telegram.org/method/phone.discardGroupCall for reference.
func (c *Client) PhoneDiscardGroupCall(ctx context.Context, call InputGroupCallClass) (UpdatesClass, error) {
var result UpdatesBox
request := &PhoneDiscardGroupCallRequest{
Call: call,
}
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return result.Updates, nil
}