7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
209 lines
5.2 KiB
Go
Generated
209 lines
5.2 KiB
Go
Generated
// 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{}
|
|
)
|
|
|
|
// PhoneSaveCallDebugRequest represents TL type `phone.saveCallDebug#277add7e`.
|
|
// Send phone call debug data to server
|
|
//
|
|
// See https://core.telegram.org/method/phone.saveCallDebug for reference.
|
|
type PhoneSaveCallDebugRequest struct {
|
|
// Phone call
|
|
Peer InputPhoneCall
|
|
// Debug statistics obtained from libtgvoip
|
|
Debug DataJSON
|
|
}
|
|
|
|
// PhoneSaveCallDebugRequestTypeID is TL type id of PhoneSaveCallDebugRequest.
|
|
const PhoneSaveCallDebugRequestTypeID = 0x277add7e
|
|
|
|
// Ensuring interfaces in compile-time for PhoneSaveCallDebugRequest.
|
|
var (
|
|
_ bin.Encoder = &PhoneSaveCallDebugRequest{}
|
|
_ bin.Decoder = &PhoneSaveCallDebugRequest{}
|
|
_ bin.BareEncoder = &PhoneSaveCallDebugRequest{}
|
|
_ bin.BareDecoder = &PhoneSaveCallDebugRequest{}
|
|
)
|
|
|
|
func (s *PhoneSaveCallDebugRequest) Zero() bool {
|
|
if s == nil {
|
|
return true
|
|
}
|
|
if !(s.Peer.Zero()) {
|
|
return false
|
|
}
|
|
if !(s.Debug.Zero()) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (s *PhoneSaveCallDebugRequest) String() string {
|
|
if s == nil {
|
|
return "PhoneSaveCallDebugRequest(nil)"
|
|
}
|
|
type Alias PhoneSaveCallDebugRequest
|
|
return fmt.Sprintf("PhoneSaveCallDebugRequest%+v", Alias(*s))
|
|
}
|
|
|
|
// FillFrom fills PhoneSaveCallDebugRequest from given interface.
|
|
func (s *PhoneSaveCallDebugRequest) FillFrom(from interface {
|
|
GetPeer() (value InputPhoneCall)
|
|
GetDebug() (value DataJSON)
|
|
}) {
|
|
s.Peer = from.GetPeer()
|
|
s.Debug = from.GetDebug()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*PhoneSaveCallDebugRequest) TypeID() uint32 {
|
|
return PhoneSaveCallDebugRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*PhoneSaveCallDebugRequest) TypeName() string {
|
|
return "phone.saveCallDebug"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (s *PhoneSaveCallDebugRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "phone.saveCallDebug",
|
|
ID: PhoneSaveCallDebugRequestTypeID,
|
|
}
|
|
if s == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Peer",
|
|
SchemaName: "peer",
|
|
},
|
|
{
|
|
Name: "Debug",
|
|
SchemaName: "debug",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (s *PhoneSaveCallDebugRequest) Encode(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't encode phone.saveCallDebug#277add7e as nil")
|
|
}
|
|
b.PutID(PhoneSaveCallDebugRequestTypeID)
|
|
return s.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (s *PhoneSaveCallDebugRequest) EncodeBare(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't encode phone.saveCallDebug#277add7e as nil")
|
|
}
|
|
if err := s.Peer.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode phone.saveCallDebug#277add7e: field peer: %w", err)
|
|
}
|
|
if err := s.Debug.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode phone.saveCallDebug#277add7e: field debug: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (s *PhoneSaveCallDebugRequest) Decode(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't decode phone.saveCallDebug#277add7e to nil")
|
|
}
|
|
if err := b.ConsumeID(PhoneSaveCallDebugRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: %w", err)
|
|
}
|
|
return s.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (s *PhoneSaveCallDebugRequest) DecodeBare(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't decode phone.saveCallDebug#277add7e to nil")
|
|
}
|
|
{
|
|
if err := s.Peer.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: field peer: %w", err)
|
|
}
|
|
}
|
|
{
|
|
if err := s.Debug.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: field debug: %w", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetPeer returns value of Peer field.
|
|
func (s *PhoneSaveCallDebugRequest) GetPeer() (value InputPhoneCall) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.Peer
|
|
}
|
|
|
|
// GetDebug returns value of Debug field.
|
|
func (s *PhoneSaveCallDebugRequest) GetDebug() (value DataJSON) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.Debug
|
|
}
|
|
|
|
// PhoneSaveCallDebug invokes method phone.saveCallDebug#277add7e returning error if any.
|
|
// Send phone call debug data to server
|
|
//
|
|
// Possible errors:
|
|
//
|
|
// 400 CALL_PEER_INVALID: The provided call peer object is invalid.
|
|
// 400 DATA_JSON_INVALID: The provided JSON data is invalid.
|
|
//
|
|
// See https://core.telegram.org/method/phone.saveCallDebug for reference.
|
|
func (c *Client) PhoneSaveCallDebug(ctx context.Context, request *PhoneSaveCallDebugRequest) (bool, error) {
|
|
var result BoolBox
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return false, err
|
|
}
|
|
_, ok := result.Bool.(*BoolTrue)
|
|
return ok, nil
|
|
}
|