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 PaymentsGetStarGiftsRequest struct {
Hash int
}
const PaymentsGetStarGiftsRequestTypeID = 0xc4563590
var (
_ bin .Encoder = &PaymentsGetStarGiftsRequest {}
_ bin .Decoder = &PaymentsGetStarGiftsRequest {}
_ bin .BareEncoder = &PaymentsGetStarGiftsRequest {}
_ bin .BareDecoder = &PaymentsGetStarGiftsRequest {}
)
func (g *PaymentsGetStarGiftsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Hash == 0 ) {
return false
}
return true
}
func (g *PaymentsGetStarGiftsRequest ) String () string {
if g == nil {
return "PaymentsGetStarGiftsRequest(nil)"
}
type Alias PaymentsGetStarGiftsRequest
return fmt .Sprintf ("PaymentsGetStarGiftsRequest%+v" , Alias (*g ))
}
func (g *PaymentsGetStarGiftsRequest ) FillFrom (from interface {
GetHash () (value int )
}) {
g .Hash = from .GetHash ()
}
func (*PaymentsGetStarGiftsRequest ) TypeID () uint32 {
return PaymentsGetStarGiftsRequestTypeID
}
func (*PaymentsGetStarGiftsRequest ) TypeName () string {
return "payments.getStarGifts"
}
func (g *PaymentsGetStarGiftsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "payments.getStarGifts" ,
ID : PaymentsGetStarGiftsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Hash" ,
SchemaName : "hash" ,
},
}
return typ
}
func (g *PaymentsGetStarGiftsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode payments.getStarGifts#c4563590 as nil" )
}
b .PutID (PaymentsGetStarGiftsRequestTypeID )
return g .EncodeBare (b )
}
func (g *PaymentsGetStarGiftsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode payments.getStarGifts#c4563590 as nil" )
}
b .PutInt (g .Hash )
return nil
}
func (g *PaymentsGetStarGiftsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode payments.getStarGifts#c4563590 to nil" )
}
if err := b .ConsumeID (PaymentsGetStarGiftsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode payments.getStarGifts#c4563590: %w" , err )
}
return g .DecodeBare (b )
}
func (g *PaymentsGetStarGiftsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode payments.getStarGifts#c4563590 to nil" )
}
{
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode payments.getStarGifts#c4563590: field hash: %w" , err )
}
g .Hash = value
}
return nil
}
func (g *PaymentsGetStarGiftsRequest ) GetHash () (value int ) {
if g == nil {
return
}
return g .Hash
}
func (c *Client ) PaymentsGetStarGifts (ctx context .Context , hash int ) (PaymentsStarGiftsClass , error ) {
var result PaymentsStarGiftsBox
request := &PaymentsGetStarGiftsRequest {
Hash : hash ,
}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .StarGifts , nil
}
The pages are generated with Golds v0.8.4 . (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds .