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

899 lines
23 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{}
)
// InputWebFileLocation represents TL type `inputWebFileLocation#c239d686`.
// Location of a remote HTTP(s) file
//
// See https://core.telegram.org/constructor/inputWebFileLocation for reference.
type InputWebFileLocation struct {
// HTTP URL of file
URL string
// Access hash
AccessHash int64
}
// InputWebFileLocationTypeID is TL type id of InputWebFileLocation.
const InputWebFileLocationTypeID = 0xc239d686
// construct implements constructor of InputWebFileLocationClass.
func (i InputWebFileLocation) construct() InputWebFileLocationClass { return &i }
// Ensuring interfaces in compile-time for InputWebFileLocation.
var (
_ bin.Encoder = &InputWebFileLocation{}
_ bin.Decoder = &InputWebFileLocation{}
_ bin.BareEncoder = &InputWebFileLocation{}
_ bin.BareDecoder = &InputWebFileLocation{}
_ InputWebFileLocationClass = &InputWebFileLocation{}
)
func (i *InputWebFileLocation) Zero() bool {
if i == nil {
return true
}
if !(i.URL == "") {
return false
}
if !(i.AccessHash == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InputWebFileLocation) String() string {
if i == nil {
return "InputWebFileLocation(nil)"
}
type Alias InputWebFileLocation
return fmt.Sprintf("InputWebFileLocation%+v", Alias(*i))
}
// FillFrom fills InputWebFileLocation from given interface.
func (i *InputWebFileLocation) FillFrom(from interface {
GetURL() (value string)
GetAccessHash() (value int64)
}) {
i.URL = from.GetURL()
i.AccessHash = from.GetAccessHash()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InputWebFileLocation) TypeID() uint32 {
return InputWebFileLocationTypeID
}
// TypeName returns name of type in TL schema.
func (*InputWebFileLocation) TypeName() string {
return "inputWebFileLocation"
}
// TypeInfo returns info about TL type.
func (i *InputWebFileLocation) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inputWebFileLocation",
ID: InputWebFileLocationTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "AccessHash",
SchemaName: "access_hash",
},
}
return typ
}
// Encode implements bin.Encoder.
func (i *InputWebFileLocation) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputWebFileLocation#c239d686 as nil")
}
b.PutID(InputWebFileLocationTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InputWebFileLocation) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputWebFileLocation#c239d686 as nil")
}
b.PutString(i.URL)
b.PutLong(i.AccessHash)
return nil
}
// Decode implements bin.Decoder.
func (i *InputWebFileLocation) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputWebFileLocation#c239d686 to nil")
}
if err := b.ConsumeID(InputWebFileLocationTypeID); err != nil {
return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InputWebFileLocation) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputWebFileLocation#c239d686 to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: field url: %w", err)
}
i.URL = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: field access_hash: %w", err)
}
i.AccessHash = value
}
return nil
}
// GetURL returns value of URL field.
func (i *InputWebFileLocation) GetURL() (value string) {
if i == nil {
return
}
return i.URL
}
// GetAccessHash returns value of AccessHash field.
func (i *InputWebFileLocation) GetAccessHash() (value int64) {
if i == nil {
return
}
return i.AccessHash
}
// InputWebFileGeoPointLocation represents TL type `inputWebFileGeoPointLocation#9f2221c9`.
// Used to download a server-generated image with the map preview from a geoPoint¹, see
// the webfile docs for more info »².
//
// Links:
// 1. https://core.telegram.org/constructor/geoPoint
// 2. https://core.telegram.org/api/files#downloading-webfiles
//
// See https://core.telegram.org/constructor/inputWebFileGeoPointLocation for reference.
type InputWebFileGeoPointLocation struct {
// Generated from the lat, long and accuracy_radius parameters of the geoPoint¹
//
// Links:
// 1) https://core.telegram.org/constructor/geoPoint
GeoPoint InputGeoPointClass
// Access hash of the geoPoint¹
//
// Links:
// 1) https://core.telegram.org/constructor/geoPoint
AccessHash int64
// Map width in pixels before applying scale; 16-1024
W int
// Map height in pixels before applying scale; 16-1024
H int
// Map zoom level; 13-20
Zoom int
// Map scale; 1-3
Scale int
}
// InputWebFileGeoPointLocationTypeID is TL type id of InputWebFileGeoPointLocation.
const InputWebFileGeoPointLocationTypeID = 0x9f2221c9
// construct implements constructor of InputWebFileLocationClass.
func (i InputWebFileGeoPointLocation) construct() InputWebFileLocationClass { return &i }
// Ensuring interfaces in compile-time for InputWebFileGeoPointLocation.
var (
_ bin.Encoder = &InputWebFileGeoPointLocation{}
_ bin.Decoder = &InputWebFileGeoPointLocation{}
_ bin.BareEncoder = &InputWebFileGeoPointLocation{}
_ bin.BareDecoder = &InputWebFileGeoPointLocation{}
_ InputWebFileLocationClass = &InputWebFileGeoPointLocation{}
)
func (i *InputWebFileGeoPointLocation) Zero() bool {
if i == nil {
return true
}
if !(i.GeoPoint == nil) {
return false
}
if !(i.AccessHash == 0) {
return false
}
if !(i.W == 0) {
return false
}
if !(i.H == 0) {
return false
}
if !(i.Zoom == 0) {
return false
}
if !(i.Scale == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InputWebFileGeoPointLocation) String() string {
if i == nil {
return "InputWebFileGeoPointLocation(nil)"
}
type Alias InputWebFileGeoPointLocation
return fmt.Sprintf("InputWebFileGeoPointLocation%+v", Alias(*i))
}
// FillFrom fills InputWebFileGeoPointLocation from given interface.
func (i *InputWebFileGeoPointLocation) FillFrom(from interface {
GetGeoPoint() (value InputGeoPointClass)
GetAccessHash() (value int64)
GetW() (value int)
GetH() (value int)
GetZoom() (value int)
GetScale() (value int)
}) {
i.GeoPoint = from.GetGeoPoint()
i.AccessHash = from.GetAccessHash()
i.W = from.GetW()
i.H = from.GetH()
i.Zoom = from.GetZoom()
i.Scale = from.GetScale()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InputWebFileGeoPointLocation) TypeID() uint32 {
return InputWebFileGeoPointLocationTypeID
}
// TypeName returns name of type in TL schema.
func (*InputWebFileGeoPointLocation) TypeName() string {
return "inputWebFileGeoPointLocation"
}
// TypeInfo returns info about TL type.
func (i *InputWebFileGeoPointLocation) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inputWebFileGeoPointLocation",
ID: InputWebFileGeoPointLocationTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "GeoPoint",
SchemaName: "geo_point",
},
{
Name: "AccessHash",
SchemaName: "access_hash",
},
{
Name: "W",
SchemaName: "w",
},
{
Name: "H",
SchemaName: "h",
},
{
Name: "Zoom",
SchemaName: "zoom",
},
{
Name: "Scale",
SchemaName: "scale",
},
}
return typ
}
// Encode implements bin.Encoder.
func (i *InputWebFileGeoPointLocation) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputWebFileGeoPointLocation#9f2221c9 as nil")
}
b.PutID(InputWebFileGeoPointLocationTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InputWebFileGeoPointLocation) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputWebFileGeoPointLocation#9f2221c9 as nil")
}
if i.GeoPoint == nil {
return fmt.Errorf("unable to encode inputWebFileGeoPointLocation#9f2221c9: field geo_point is nil")
}
if err := i.GeoPoint.Encode(b); err != nil {
return fmt.Errorf("unable to encode inputWebFileGeoPointLocation#9f2221c9: field geo_point: %w", err)
}
b.PutLong(i.AccessHash)
b.PutInt(i.W)
b.PutInt(i.H)
b.PutInt(i.Zoom)
b.PutInt(i.Scale)
return nil
}
// Decode implements bin.Decoder.
func (i *InputWebFileGeoPointLocation) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputWebFileGeoPointLocation#9f2221c9 to nil")
}
if err := b.ConsumeID(InputWebFileGeoPointLocationTypeID); err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InputWebFileGeoPointLocation) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputWebFileGeoPointLocation#9f2221c9 to nil")
}
{
value, err := DecodeInputGeoPoint(b)
if err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field geo_point: %w", err)
}
i.GeoPoint = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field access_hash: %w", err)
}
i.AccessHash = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field w: %w", err)
}
i.W = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field h: %w", err)
}
i.H = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field zoom: %w", err)
}
i.Zoom = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field scale: %w", err)
}
i.Scale = value
}
return nil
}
// GetGeoPoint returns value of GeoPoint field.
func (i *InputWebFileGeoPointLocation) GetGeoPoint() (value InputGeoPointClass) {
if i == nil {
return
}
return i.GeoPoint
}
// GetAccessHash returns value of AccessHash field.
func (i *InputWebFileGeoPointLocation) GetAccessHash() (value int64) {
if i == nil {
return
}
return i.AccessHash
}
// GetW returns value of W field.
func (i *InputWebFileGeoPointLocation) GetW() (value int) {
if i == nil {
return
}
return i.W
}
// GetH returns value of H field.
func (i *InputWebFileGeoPointLocation) GetH() (value int) {
if i == nil {
return
}
return i.H
}
// GetZoom returns value of Zoom field.
func (i *InputWebFileGeoPointLocation) GetZoom() (value int) {
if i == nil {
return
}
return i.Zoom
}
// GetScale returns value of Scale field.
func (i *InputWebFileGeoPointLocation) GetScale() (value int) {
if i == nil {
return
}
return i.Scale
}
// InputWebFileAudioAlbumThumbLocation represents TL type `inputWebFileAudioAlbumThumbLocation#f46fe924`.
// Used to download an album cover for any music file using upload.getWebFile¹, see the
// webfile docs for more info »².
//
// Links:
// 1. https://core.telegram.org/method/upload.getWebFile
// 2. https://core.telegram.org/api/files#downloading-webfiles
//
// See https://core.telegram.org/constructor/inputWebFileAudioAlbumThumbLocation for reference.
type InputWebFileAudioAlbumThumbLocation struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Used to return a thumbnail with 100x100 resolution (instead of the default 600x600)
Small bool
// The audio file in question: must NOT be provided in secret chats, provide the title
// and performer fields instead.
//
// Use SetDocument and GetDocument helpers.
Document InputDocumentClass
// Song title: should only be used in secret chats, in normal chats provide document
// instead, as it has more lax rate limits.
//
// Use SetTitle and GetTitle helpers.
Title string
// Song performer: should only be used in secret chats, in normal chats provide document
// instead, as it has more lax rate limits.
//
// Use SetPerformer and GetPerformer helpers.
Performer string
}
// InputWebFileAudioAlbumThumbLocationTypeID is TL type id of InputWebFileAudioAlbumThumbLocation.
const InputWebFileAudioAlbumThumbLocationTypeID = 0xf46fe924
// construct implements constructor of InputWebFileLocationClass.
func (i InputWebFileAudioAlbumThumbLocation) construct() InputWebFileLocationClass { return &i }
// Ensuring interfaces in compile-time for InputWebFileAudioAlbumThumbLocation.
var (
_ bin.Encoder = &InputWebFileAudioAlbumThumbLocation{}
_ bin.Decoder = &InputWebFileAudioAlbumThumbLocation{}
_ bin.BareEncoder = &InputWebFileAudioAlbumThumbLocation{}
_ bin.BareDecoder = &InputWebFileAudioAlbumThumbLocation{}
_ InputWebFileLocationClass = &InputWebFileAudioAlbumThumbLocation{}
)
func (i *InputWebFileAudioAlbumThumbLocation) Zero() bool {
if i == nil {
return true
}
if !(i.Flags.Zero()) {
return false
}
if !(i.Small == false) {
return false
}
if !(i.Document == nil) {
return false
}
if !(i.Title == "") {
return false
}
if !(i.Performer == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InputWebFileAudioAlbumThumbLocation) String() string {
if i == nil {
return "InputWebFileAudioAlbumThumbLocation(nil)"
}
type Alias InputWebFileAudioAlbumThumbLocation
return fmt.Sprintf("InputWebFileAudioAlbumThumbLocation%+v", Alias(*i))
}
// FillFrom fills InputWebFileAudioAlbumThumbLocation from given interface.
func (i *InputWebFileAudioAlbumThumbLocation) FillFrom(from interface {
GetSmall() (value bool)
GetDocument() (value InputDocumentClass, ok bool)
GetTitle() (value string, ok bool)
GetPerformer() (value string, ok bool)
}) {
i.Small = from.GetSmall()
if val, ok := from.GetDocument(); ok {
i.Document = val
}
if val, ok := from.GetTitle(); ok {
i.Title = val
}
if val, ok := from.GetPerformer(); ok {
i.Performer = val
}
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InputWebFileAudioAlbumThumbLocation) TypeID() uint32 {
return InputWebFileAudioAlbumThumbLocationTypeID
}
// TypeName returns name of type in TL schema.
func (*InputWebFileAudioAlbumThumbLocation) TypeName() string {
return "inputWebFileAudioAlbumThumbLocation"
}
// TypeInfo returns info about TL type.
func (i *InputWebFileAudioAlbumThumbLocation) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inputWebFileAudioAlbumThumbLocation",
ID: InputWebFileAudioAlbumThumbLocationTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Small",
SchemaName: "small",
Null: !i.Flags.Has(2),
},
{
Name: "Document",
SchemaName: "document",
Null: !i.Flags.Has(0),
},
{
Name: "Title",
SchemaName: "title",
Null: !i.Flags.Has(1),
},
{
Name: "Performer",
SchemaName: "performer",
Null: !i.Flags.Has(1),
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (i *InputWebFileAudioAlbumThumbLocation) SetFlags() {
if !(i.Small == false) {
i.Flags.Set(2)
}
if !(i.Document == nil) {
i.Flags.Set(0)
}
if !(i.Title == "") {
i.Flags.Set(1)
}
if !(i.Performer == "") {
i.Flags.Set(1)
}
}
// Encode implements bin.Encoder.
func (i *InputWebFileAudioAlbumThumbLocation) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputWebFileAudioAlbumThumbLocation#f46fe924 as nil")
}
b.PutID(InputWebFileAudioAlbumThumbLocationTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InputWebFileAudioAlbumThumbLocation) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputWebFileAudioAlbumThumbLocation#f46fe924 as nil")
}
i.SetFlags()
if err := i.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode inputWebFileAudioAlbumThumbLocation#f46fe924: field flags: %w", err)
}
if i.Flags.Has(0) {
if i.Document == nil {
return fmt.Errorf("unable to encode inputWebFileAudioAlbumThumbLocation#f46fe924: field document is nil")
}
if err := i.Document.Encode(b); err != nil {
return fmt.Errorf("unable to encode inputWebFileAudioAlbumThumbLocation#f46fe924: field document: %w", err)
}
}
if i.Flags.Has(1) {
b.PutString(i.Title)
}
if i.Flags.Has(1) {
b.PutString(i.Performer)
}
return nil
}
// Decode implements bin.Decoder.
func (i *InputWebFileAudioAlbumThumbLocation) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputWebFileAudioAlbumThumbLocation#f46fe924 to nil")
}
if err := b.ConsumeID(InputWebFileAudioAlbumThumbLocationTypeID); err != nil {
return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InputWebFileAudioAlbumThumbLocation) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputWebFileAudioAlbumThumbLocation#f46fe924 to nil")
}
{
if err := i.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field flags: %w", err)
}
}
i.Small = i.Flags.Has(2)
if i.Flags.Has(0) {
value, err := DecodeInputDocument(b)
if err != nil {
return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field document: %w", err)
}
i.Document = value
}
if i.Flags.Has(1) {
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field title: %w", err)
}
i.Title = value
}
if i.Flags.Has(1) {
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field performer: %w", err)
}
i.Performer = value
}
return nil
}
// SetSmall sets value of Small conditional field.
func (i *InputWebFileAudioAlbumThumbLocation) SetSmall(value bool) {
if value {
i.Flags.Set(2)
i.Small = true
} else {
i.Flags.Unset(2)
i.Small = false
}
}
// GetSmall returns value of Small conditional field.
func (i *InputWebFileAudioAlbumThumbLocation) GetSmall() (value bool) {
if i == nil {
return
}
return i.Flags.Has(2)
}
// SetDocument sets value of Document conditional field.
func (i *InputWebFileAudioAlbumThumbLocation) SetDocument(value InputDocumentClass) {
i.Flags.Set(0)
i.Document = value
}
// GetDocument returns value of Document conditional field and
// boolean which is true if field was set.
func (i *InputWebFileAudioAlbumThumbLocation) GetDocument() (value InputDocumentClass, ok bool) {
if i == nil {
return
}
if !i.Flags.Has(0) {
return value, false
}
return i.Document, true
}
// SetTitle sets value of Title conditional field.
func (i *InputWebFileAudioAlbumThumbLocation) SetTitle(value string) {
i.Flags.Set(1)
i.Title = value
}
// GetTitle returns value of Title conditional field and
// boolean which is true if field was set.
func (i *InputWebFileAudioAlbumThumbLocation) GetTitle() (value string, ok bool) {
if i == nil {
return
}
if !i.Flags.Has(1) {
return value, false
}
return i.Title, true
}
// SetPerformer sets value of Performer conditional field.
func (i *InputWebFileAudioAlbumThumbLocation) SetPerformer(value string) {
i.Flags.Set(1)
i.Performer = value
}
// GetPerformer returns value of Performer conditional field and
// boolean which is true if field was set.
func (i *InputWebFileAudioAlbumThumbLocation) GetPerformer() (value string, ok bool) {
if i == nil {
return
}
if !i.Flags.Has(1) {
return value, false
}
return i.Performer, true
}
// InputWebFileLocationClassName is schema name of InputWebFileLocationClass.
const InputWebFileLocationClassName = "InputWebFileLocation"
// InputWebFileLocationClass represents InputWebFileLocation generic type.
//
// See https://core.telegram.org/type/InputWebFileLocation for reference.
//
// Example:
//
// g, err := tg.DecodeInputWebFileLocation(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.InputWebFileLocation: // inputWebFileLocation#c239d686
// case *tg.InputWebFileGeoPointLocation: // inputWebFileGeoPointLocation#9f2221c9
// case *tg.InputWebFileAudioAlbumThumbLocation: // inputWebFileAudioAlbumThumbLocation#f46fe924
// default: panic(v)
// }
type InputWebFileLocationClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() InputWebFileLocationClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
}
// DecodeInputWebFileLocation implements binary de-serialization for InputWebFileLocationClass.
func DecodeInputWebFileLocation(buf *bin.Buffer) (InputWebFileLocationClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case InputWebFileLocationTypeID:
// Decoding inputWebFileLocation#c239d686.
v := InputWebFileLocation{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
}
return &v, nil
case InputWebFileGeoPointLocationTypeID:
// Decoding inputWebFileGeoPointLocation#9f2221c9.
v := InputWebFileGeoPointLocation{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
}
return &v, nil
case InputWebFileAudioAlbumThumbLocationTypeID:
// Decoding inputWebFileAudioAlbumThumbLocation#f46fe924.
v := InputWebFileAudioAlbumThumbLocation{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", bin.NewUnexpectedID(id))
}
}
// InputWebFileLocation boxes the InputWebFileLocationClass providing a helper.
type InputWebFileLocationBox struct {
InputWebFileLocation InputWebFileLocationClass
}
// Decode implements bin.Decoder for InputWebFileLocationBox.
func (b *InputWebFileLocationBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode InputWebFileLocationBox to nil")
}
v, err := DecodeInputWebFileLocation(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.InputWebFileLocation = v
return nil
}
// Encode implements bin.Encode for InputWebFileLocationBox.
func (b *InputWebFileLocationBox) Encode(buf *bin.Buffer) error {
if b == nil || b.InputWebFileLocation == nil {
return fmt.Errorf("unable to encode InputWebFileLocationClass as nil")
}
return b.InputWebFileLocation.Encode(buf)
}