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

238 lines
5.6 KiB
Go

// Code generated by gotdgen, DO NOT EDIT.
package tdapi
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{}
)
// GetGiveawayInfoRequest represents TL type `getGiveawayInfo#b78790bb`.
type GetGiveawayInfoRequest struct {
// Identifier of the channel chat which started the giveaway
ChatID int64
// Identifier of the giveaway or a giveaway winners message in the chat
MessageID int64
}
// GetGiveawayInfoRequestTypeID is TL type id of GetGiveawayInfoRequest.
const GetGiveawayInfoRequestTypeID = 0xb78790bb
// Ensuring interfaces in compile-time for GetGiveawayInfoRequest.
var (
_ bin.Encoder = &GetGiveawayInfoRequest{}
_ bin.Decoder = &GetGiveawayInfoRequest{}
_ bin.BareEncoder = &GetGiveawayInfoRequest{}
_ bin.BareDecoder = &GetGiveawayInfoRequest{}
)
func (g *GetGiveawayInfoRequest) Zero() bool {
if g == nil {
return true
}
if !(g.ChatID == 0) {
return false
}
if !(g.MessageID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (g *GetGiveawayInfoRequest) String() string {
if g == nil {
return "GetGiveawayInfoRequest(nil)"
}
type Alias GetGiveawayInfoRequest
return fmt.Sprintf("GetGiveawayInfoRequest%+v", Alias(*g))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*GetGiveawayInfoRequest) TypeID() uint32 {
return GetGiveawayInfoRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*GetGiveawayInfoRequest) TypeName() string {
return "getGiveawayInfo"
}
// TypeInfo returns info about TL type.
func (g *GetGiveawayInfoRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "getGiveawayInfo",
ID: GetGiveawayInfoRequestTypeID,
}
if g == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ChatID",
SchemaName: "chat_id",
},
{
Name: "MessageID",
SchemaName: "message_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (g *GetGiveawayInfoRequest) Encode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode getGiveawayInfo#b78790bb as nil")
}
b.PutID(GetGiveawayInfoRequestTypeID)
return g.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (g *GetGiveawayInfoRequest) EncodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode getGiveawayInfo#b78790bb as nil")
}
b.PutInt53(g.ChatID)
b.PutInt53(g.MessageID)
return nil
}
// Decode implements bin.Decoder.
func (g *GetGiveawayInfoRequest) Decode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode getGiveawayInfo#b78790bb to nil")
}
if err := b.ConsumeID(GetGiveawayInfoRequestTypeID); err != nil {
return fmt.Errorf("unable to decode getGiveawayInfo#b78790bb: %w", err)
}
return g.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (g *GetGiveawayInfoRequest) DecodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode getGiveawayInfo#b78790bb to nil")
}
{
value, err := b.Int53()
if err != nil {
return fmt.Errorf("unable to decode getGiveawayInfo#b78790bb: field chat_id: %w", err)
}
g.ChatID = value
}
{
value, err := b.Int53()
if err != nil {
return fmt.Errorf("unable to decode getGiveawayInfo#b78790bb: field message_id: %w", err)
}
g.MessageID = value
}
return nil
}
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
func (g *GetGiveawayInfoRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
if g == nil {
return fmt.Errorf("can't encode getGiveawayInfo#b78790bb as nil")
}
b.ObjStart()
b.PutID("getGiveawayInfo")
b.Comma()
b.FieldStart("chat_id")
b.PutInt53(g.ChatID)
b.Comma()
b.FieldStart("message_id")
b.PutInt53(g.MessageID)
b.Comma()
b.StripComma()
b.ObjEnd()
return nil
}
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
func (g *GetGiveawayInfoRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
if g == nil {
return fmt.Errorf("can't decode getGiveawayInfo#b78790bb to nil")
}
return b.Obj(func(b tdjson.Decoder, key []byte) error {
switch string(key) {
case tdjson.TypeField:
if err := b.ConsumeID("getGiveawayInfo"); err != nil {
return fmt.Errorf("unable to decode getGiveawayInfo#b78790bb: %w", err)
}
case "chat_id":
value, err := b.Int53()
if err != nil {
return fmt.Errorf("unable to decode getGiveawayInfo#b78790bb: field chat_id: %w", err)
}
g.ChatID = value
case "message_id":
value, err := b.Int53()
if err != nil {
return fmt.Errorf("unable to decode getGiveawayInfo#b78790bb: field message_id: %w", err)
}
g.MessageID = value
default:
return b.Skip()
}
return nil
})
}
// GetChatID returns value of ChatID field.
func (g *GetGiveawayInfoRequest) GetChatID() (value int64) {
if g == nil {
return
}
return g.ChatID
}
// GetMessageID returns value of MessageID field.
func (g *GetGiveawayInfoRequest) GetMessageID() (value int64) {
if g == nil {
return
}
return g.MessageID
}
// GetGiveawayInfo invokes method getGiveawayInfo#b78790bb returning error if any.
func (c *Client) GetGiveawayInfo(ctx context.Context, request *GetGiveawayInfoRequest) (GiveawayInfoClass, error) {
var result GiveawayInfoBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return result.GiveawayInfo, nil
}