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

187 lines
4.8 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{}
)
// PhoneReceivedCallRequest represents TL type `phone.receivedCall#17d54f61`.
// Optional: notify the server that the user is currently busy in a call: this will
// automatically refuse all incoming phone calls until the current phone call is ended.
//
// See https://core.telegram.org/method/phone.receivedCall for reference.
type PhoneReceivedCallRequest struct {
// The phone call we're currently in
Peer InputPhoneCall
}
// PhoneReceivedCallRequestTypeID is TL type id of PhoneReceivedCallRequest.
const PhoneReceivedCallRequestTypeID = 0x17d54f61
// Ensuring interfaces in compile-time for PhoneReceivedCallRequest.
var (
_ bin.Encoder = &PhoneReceivedCallRequest{}
_ bin.Decoder = &PhoneReceivedCallRequest{}
_ bin.BareEncoder = &PhoneReceivedCallRequest{}
_ bin.BareDecoder = &PhoneReceivedCallRequest{}
)
func (r *PhoneReceivedCallRequest) Zero() bool {
if r == nil {
return true
}
if !(r.Peer.Zero()) {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *PhoneReceivedCallRequest) String() string {
if r == nil {
return "PhoneReceivedCallRequest(nil)"
}
type Alias PhoneReceivedCallRequest
return fmt.Sprintf("PhoneReceivedCallRequest%+v", Alias(*r))
}
// FillFrom fills PhoneReceivedCallRequest from given interface.
func (r *PhoneReceivedCallRequest) FillFrom(from interface {
GetPeer() (value InputPhoneCall)
}) {
r.Peer = from.GetPeer()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhoneReceivedCallRequest) TypeID() uint32 {
return PhoneReceivedCallRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhoneReceivedCallRequest) TypeName() string {
return "phone.receivedCall"
}
// TypeInfo returns info about TL type.
func (r *PhoneReceivedCallRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "phone.receivedCall",
ID: PhoneReceivedCallRequestTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Peer",
SchemaName: "peer",
},
}
return typ
}
// Encode implements bin.Encoder.
func (r *PhoneReceivedCallRequest) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode phone.receivedCall#17d54f61 as nil")
}
b.PutID(PhoneReceivedCallRequestTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *PhoneReceivedCallRequest) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode phone.receivedCall#17d54f61 as nil")
}
if err := r.Peer.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.receivedCall#17d54f61: field peer: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (r *PhoneReceivedCallRequest) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode phone.receivedCall#17d54f61 to nil")
}
if err := b.ConsumeID(PhoneReceivedCallRequestTypeID); err != nil {
return fmt.Errorf("unable to decode phone.receivedCall#17d54f61: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *PhoneReceivedCallRequest) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode phone.receivedCall#17d54f61 to nil")
}
{
if err := r.Peer.Decode(b); err != nil {
return fmt.Errorf("unable to decode phone.receivedCall#17d54f61: field peer: %w", err)
}
}
return nil
}
// GetPeer returns value of Peer field.
func (r *PhoneReceivedCallRequest) GetPeer() (value InputPhoneCall) {
if r == nil {
return
}
return r.Peer
}
// PhoneReceivedCall invokes method phone.receivedCall#17d54f61 returning error if any.
// Optional: notify the server that the user is currently busy in a call: this will
// automatically refuse all incoming phone calls until the current phone call is ended.
//
// Possible errors:
//
// 400 CALL_ALREADY_DECLINED: The call was already declined.
// 400 CALL_PEER_INVALID: The provided call peer object is invalid.
//
// See https://core.telegram.org/method/phone.receivedCall for reference.
func (c *Client) PhoneReceivedCall(ctx context.Context, peer InputPhoneCall) (bool, error) {
var result BoolBox
request := &PhoneReceivedCallRequest{
Peer: peer,
}
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return false, err
}
_, ok := result.Bool.(*BoolTrue)
return ok, nil
}