package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type PhoneReceivedCallRequest struct {
Peer InputPhoneCall
}
const PhoneReceivedCallRequestTypeID = 0x17d54f61
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
}
func (r *PhoneReceivedCallRequest ) String () string {
if r == nil {
return "PhoneReceivedCallRequest(nil)"
}
type Alias PhoneReceivedCallRequest
return fmt .Sprintf ("PhoneReceivedCallRequest%+v" , Alias (*r ))
}
func (r *PhoneReceivedCallRequest ) FillFrom (from interface {
GetPeer () (value InputPhoneCall )
}) {
r .Peer = from .GetPeer ()
}
func (*PhoneReceivedCallRequest ) TypeID () uint32 {
return PhoneReceivedCallRequestTypeID
}
func (*PhoneReceivedCallRequest ) TypeName () string {
return "phone.receivedCall"
}
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
}
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 )
}
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
}
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 )
}
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
}
func (r *PhoneReceivedCallRequest ) GetPeer () (value InputPhoneCall ) {
if r == nil {
return
}
return r .Peer
}
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
}
The pages are generated with Golds v0.6.7 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds .