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 PhoneRequestCallRequest struct {
Flags bin .Fields
Video bool
UserID InputUserClass
RandomID int
GAHash []byte
Protocol PhoneCallProtocol
}
const PhoneRequestCallRequestTypeID = 0x42ff96ed
var (
_ bin .Encoder = &PhoneRequestCallRequest {}
_ bin .Decoder = &PhoneRequestCallRequest {}
_ bin .BareEncoder = &PhoneRequestCallRequest {}
_ bin .BareDecoder = &PhoneRequestCallRequest {}
)
func (r *PhoneRequestCallRequest ) Zero () bool {
if r == nil {
return true
}
if !(r .Flags .Zero ()) {
return false
}
if !(r .Video == false ) {
return false
}
if !(r .UserID == nil ) {
return false
}
if !(r .RandomID == 0 ) {
return false
}
if !(r .GAHash == nil ) {
return false
}
if !(r .Protocol .Zero ()) {
return false
}
return true
}
func (r *PhoneRequestCallRequest ) String () string {
if r == nil {
return "PhoneRequestCallRequest(nil)"
}
type Alias PhoneRequestCallRequest
return fmt .Sprintf ("PhoneRequestCallRequest%+v" , Alias (*r ))
}
func (r *PhoneRequestCallRequest ) FillFrom (from interface {
GetVideo () (value bool )
GetUserID () (value InputUserClass )
GetRandomID () (value int )
GetGAHash () (value []byte )
GetProtocol () (value PhoneCallProtocol )
}) {
r .Video = from .GetVideo ()
r .UserID = from .GetUserID ()
r .RandomID = from .GetRandomID ()
r .GAHash = from .GetGAHash ()
r .Protocol = from .GetProtocol ()
}
func (*PhoneRequestCallRequest ) TypeID () uint32 {
return PhoneRequestCallRequestTypeID
}
func (*PhoneRequestCallRequest ) TypeName () string {
return "phone.requestCall"
}
func (r *PhoneRequestCallRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "phone.requestCall" ,
ID : PhoneRequestCallRequestTypeID ,
}
if r == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Video" ,
SchemaName : "video" ,
Null : !r .Flags .Has (0 ),
},
{
Name : "UserID" ,
SchemaName : "user_id" ,
},
{
Name : "RandomID" ,
SchemaName : "random_id" ,
},
{
Name : "GAHash" ,
SchemaName : "g_a_hash" ,
},
{
Name : "Protocol" ,
SchemaName : "protocol" ,
},
}
return typ
}
func (r *PhoneRequestCallRequest ) SetFlags () {
if !(r .Video == false ) {
r .Flags .Set (0 )
}
}
func (r *PhoneRequestCallRequest ) Encode (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't encode phone.requestCall#42ff96ed as nil" )
}
b .PutID (PhoneRequestCallRequestTypeID )
return r .EncodeBare (b )
}
func (r *PhoneRequestCallRequest ) EncodeBare (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't encode phone.requestCall#42ff96ed as nil" )
}
r .SetFlags ()
if err := r .Flags .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode phone.requestCall#42ff96ed: field flags: %w" , err )
}
if r .UserID == nil {
return fmt .Errorf ("unable to encode phone.requestCall#42ff96ed: field user_id is nil" )
}
if err := r .UserID .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode phone.requestCall#42ff96ed: field user_id: %w" , err )
}
b .PutInt (r .RandomID )
b .PutBytes (r .GAHash )
if err := r .Protocol .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode phone.requestCall#42ff96ed: field protocol: %w" , err )
}
return nil
}
func (r *PhoneRequestCallRequest ) Decode (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't decode phone.requestCall#42ff96ed to nil" )
}
if err := b .ConsumeID (PhoneRequestCallRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode phone.requestCall#42ff96ed: %w" , err )
}
return r .DecodeBare (b )
}
func (r *PhoneRequestCallRequest ) DecodeBare (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't decode phone.requestCall#42ff96ed to nil" )
}
{
if err := r .Flags .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode phone.requestCall#42ff96ed: field flags: %w" , err )
}
}
r .Video = r .Flags .Has (0 )
{
value , err := DecodeInputUser (b )
if err != nil {
return fmt .Errorf ("unable to decode phone.requestCall#42ff96ed: field user_id: %w" , err )
}
r .UserID = value
}
{
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode phone.requestCall#42ff96ed: field random_id: %w" , err )
}
r .RandomID = value
}
{
value , err := b .Bytes ()
if err != nil {
return fmt .Errorf ("unable to decode phone.requestCall#42ff96ed: field g_a_hash: %w" , err )
}
r .GAHash = value
}
{
if err := r .Protocol .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode phone.requestCall#42ff96ed: field protocol: %w" , err )
}
}
return nil
}
func (r *PhoneRequestCallRequest ) SetVideo (value bool ) {
if value {
r .Flags .Set (0 )
r .Video = true
} else {
r .Flags .Unset (0 )
r .Video = false
}
}
func (r *PhoneRequestCallRequest ) GetVideo () (value bool ) {
if r == nil {
return
}
return r .Flags .Has (0 )
}
func (r *PhoneRequestCallRequest ) GetUserID () (value InputUserClass ) {
if r == nil {
return
}
return r .UserID
}
func (r *PhoneRequestCallRequest ) GetRandomID () (value int ) {
if r == nil {
return
}
return r .RandomID
}
func (r *PhoneRequestCallRequest ) GetGAHash () (value []byte ) {
if r == nil {
return
}
return r .GAHash
}
func (r *PhoneRequestCallRequest ) GetProtocol () (value PhoneCallProtocol ) {
if r == nil {
return
}
return r .Protocol
}
func (c *Client ) PhoneRequestCall (ctx context .Context , request *PhoneRequestCallRequest ) (*PhonePhoneCall , error ) {
var result PhonePhoneCall
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return &result , 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 .