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
193 lines
4.2 KiB
Go
193 lines
4.2 KiB
Go
// 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{}
|
|
)
|
|
|
|
// StatsDateRangeDays represents TL type `statsDateRangeDays#b637edaf`.
|
|
// Channel statistics¹ date range
|
|
//
|
|
// Links:
|
|
// 1. https://core.telegram.org/api/stats
|
|
//
|
|
// See https://core.telegram.org/constructor/statsDateRangeDays for reference.
|
|
type StatsDateRangeDays struct {
|
|
// Initial date
|
|
MinDate int
|
|
// Final date
|
|
MaxDate int
|
|
}
|
|
|
|
// StatsDateRangeDaysTypeID is TL type id of StatsDateRangeDays.
|
|
const StatsDateRangeDaysTypeID = 0xb637edaf
|
|
|
|
// Ensuring interfaces in compile-time for StatsDateRangeDays.
|
|
var (
|
|
_ bin.Encoder = &StatsDateRangeDays{}
|
|
_ bin.Decoder = &StatsDateRangeDays{}
|
|
_ bin.BareEncoder = &StatsDateRangeDays{}
|
|
_ bin.BareDecoder = &StatsDateRangeDays{}
|
|
)
|
|
|
|
func (s *StatsDateRangeDays) Zero() bool {
|
|
if s == nil {
|
|
return true
|
|
}
|
|
if !(s.MinDate == 0) {
|
|
return false
|
|
}
|
|
if !(s.MaxDate == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (s *StatsDateRangeDays) String() string {
|
|
if s == nil {
|
|
return "StatsDateRangeDays(nil)"
|
|
}
|
|
type Alias StatsDateRangeDays
|
|
return fmt.Sprintf("StatsDateRangeDays%+v", Alias(*s))
|
|
}
|
|
|
|
// FillFrom fills StatsDateRangeDays from given interface.
|
|
func (s *StatsDateRangeDays) FillFrom(from interface {
|
|
GetMinDate() (value int)
|
|
GetMaxDate() (value int)
|
|
}) {
|
|
s.MinDate = from.GetMinDate()
|
|
s.MaxDate = from.GetMaxDate()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*StatsDateRangeDays) TypeID() uint32 {
|
|
return StatsDateRangeDaysTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*StatsDateRangeDays) TypeName() string {
|
|
return "statsDateRangeDays"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (s *StatsDateRangeDays) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "statsDateRangeDays",
|
|
ID: StatsDateRangeDaysTypeID,
|
|
}
|
|
if s == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "MinDate",
|
|
SchemaName: "min_date",
|
|
},
|
|
{
|
|
Name: "MaxDate",
|
|
SchemaName: "max_date",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (s *StatsDateRangeDays) Encode(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't encode statsDateRangeDays#b637edaf as nil")
|
|
}
|
|
b.PutID(StatsDateRangeDaysTypeID)
|
|
return s.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (s *StatsDateRangeDays) EncodeBare(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't encode statsDateRangeDays#b637edaf as nil")
|
|
}
|
|
b.PutInt(s.MinDate)
|
|
b.PutInt(s.MaxDate)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (s *StatsDateRangeDays) Decode(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't decode statsDateRangeDays#b637edaf to nil")
|
|
}
|
|
if err := b.ConsumeID(StatsDateRangeDaysTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: %w", err)
|
|
}
|
|
return s.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (s *StatsDateRangeDays) DecodeBare(b *bin.Buffer) error {
|
|
if s == nil {
|
|
return fmt.Errorf("can't decode statsDateRangeDays#b637edaf to nil")
|
|
}
|
|
{
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: field min_date: %w", err)
|
|
}
|
|
s.MinDate = value
|
|
}
|
|
{
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: field max_date: %w", err)
|
|
}
|
|
s.MaxDate = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetMinDate returns value of MinDate field.
|
|
func (s *StatsDateRangeDays) GetMinDate() (value int) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.MinDate
|
|
}
|
|
|
|
// GetMaxDate returns value of MaxDate field.
|
|
func (s *StatsDateRangeDays) GetMaxDate() (value int) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
return s.MaxDate
|
|
}
|