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
219 lines
5.1 KiB
Go
Generated
219 lines
5.1 KiB
Go
Generated
// 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{}
|
|
)
|
|
|
|
// MessagesAffectedHistory represents TL type `messages.affectedHistory#b45c69d1`.
|
|
// Affected part of communication history with the user or in a chat.
|
|
//
|
|
// See https://core.telegram.org/constructor/messages.affectedHistory for reference.
|
|
type MessagesAffectedHistory struct {
|
|
// Number of events occurred in a text box
|
|
Pts int
|
|
// Number of affected events
|
|
PtsCount int
|
|
// If a parameter contains positive value, it is necessary to repeat the method call
|
|
// using the given value; during the proceeding of all the history the value itself shall
|
|
// gradually decrease
|
|
Offset int
|
|
}
|
|
|
|
// MessagesAffectedHistoryTypeID is TL type id of MessagesAffectedHistory.
|
|
const MessagesAffectedHistoryTypeID = 0xb45c69d1
|
|
|
|
// Ensuring interfaces in compile-time for MessagesAffectedHistory.
|
|
var (
|
|
_ bin.Encoder = &MessagesAffectedHistory{}
|
|
_ bin.Decoder = &MessagesAffectedHistory{}
|
|
_ bin.BareEncoder = &MessagesAffectedHistory{}
|
|
_ bin.BareDecoder = &MessagesAffectedHistory{}
|
|
)
|
|
|
|
func (a *MessagesAffectedHistory) Zero() bool {
|
|
if a == nil {
|
|
return true
|
|
}
|
|
if !(a.Pts == 0) {
|
|
return false
|
|
}
|
|
if !(a.PtsCount == 0) {
|
|
return false
|
|
}
|
|
if !(a.Offset == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (a *MessagesAffectedHistory) String() string {
|
|
if a == nil {
|
|
return "MessagesAffectedHistory(nil)"
|
|
}
|
|
type Alias MessagesAffectedHistory
|
|
return fmt.Sprintf("MessagesAffectedHistory%+v", Alias(*a))
|
|
}
|
|
|
|
// FillFrom fills MessagesAffectedHistory from given interface.
|
|
func (a *MessagesAffectedHistory) FillFrom(from interface {
|
|
GetPts() (value int)
|
|
GetPtsCount() (value int)
|
|
GetOffset() (value int)
|
|
}) {
|
|
a.Pts = from.GetPts()
|
|
a.PtsCount = from.GetPtsCount()
|
|
a.Offset = from.GetOffset()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*MessagesAffectedHistory) TypeID() uint32 {
|
|
return MessagesAffectedHistoryTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*MessagesAffectedHistory) TypeName() string {
|
|
return "messages.affectedHistory"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (a *MessagesAffectedHistory) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "messages.affectedHistory",
|
|
ID: MessagesAffectedHistoryTypeID,
|
|
}
|
|
if a == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Pts",
|
|
SchemaName: "pts",
|
|
},
|
|
{
|
|
Name: "PtsCount",
|
|
SchemaName: "pts_count",
|
|
},
|
|
{
|
|
Name: "Offset",
|
|
SchemaName: "offset",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (a *MessagesAffectedHistory) Encode(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't encode messages.affectedHistory#b45c69d1 as nil")
|
|
}
|
|
b.PutID(MessagesAffectedHistoryTypeID)
|
|
return a.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (a *MessagesAffectedHistory) EncodeBare(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't encode messages.affectedHistory#b45c69d1 as nil")
|
|
}
|
|
b.PutInt(a.Pts)
|
|
b.PutInt(a.PtsCount)
|
|
b.PutInt(a.Offset)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (a *MessagesAffectedHistory) Decode(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't decode messages.affectedHistory#b45c69d1 to nil")
|
|
}
|
|
if err := b.ConsumeID(MessagesAffectedHistoryTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: %w", err)
|
|
}
|
|
return a.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (a *MessagesAffectedHistory) DecodeBare(b *bin.Buffer) error {
|
|
if a == nil {
|
|
return fmt.Errorf("can't decode messages.affectedHistory#b45c69d1 to nil")
|
|
}
|
|
{
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field pts: %w", err)
|
|
}
|
|
a.Pts = value
|
|
}
|
|
{
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field pts_count: %w", err)
|
|
}
|
|
a.PtsCount = value
|
|
}
|
|
{
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field offset: %w", err)
|
|
}
|
|
a.Offset = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetPts returns value of Pts field.
|
|
func (a *MessagesAffectedHistory) GetPts() (value int) {
|
|
if a == nil {
|
|
return
|
|
}
|
|
return a.Pts
|
|
}
|
|
|
|
// GetPtsCount returns value of PtsCount field.
|
|
func (a *MessagesAffectedHistory) GetPtsCount() (value int) {
|
|
if a == nil {
|
|
return
|
|
}
|
|
return a.PtsCount
|
|
}
|
|
|
|
// GetOffset returns value of Offset field.
|
|
func (a *MessagesAffectedHistory) GetOffset() (value int) {
|
|
if a == nil {
|
|
return
|
|
}
|
|
return a.Offset
|
|
}
|