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
238 lines
5.5 KiB
Go
238 lines
5.5 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{}
|
|
)
|
|
|
|
// DeleteStoryRequest represents TL type `deleteStory#87970aa8`.
|
|
type DeleteStoryRequest struct {
|
|
// Identifier of the chat that posted the story
|
|
StoryPosterChatID int64
|
|
// Identifier of the story to delete
|
|
StoryID int32
|
|
}
|
|
|
|
// DeleteStoryRequestTypeID is TL type id of DeleteStoryRequest.
|
|
const DeleteStoryRequestTypeID = 0x87970aa8
|
|
|
|
// Ensuring interfaces in compile-time for DeleteStoryRequest.
|
|
var (
|
|
_ bin.Encoder = &DeleteStoryRequest{}
|
|
_ bin.Decoder = &DeleteStoryRequest{}
|
|
_ bin.BareEncoder = &DeleteStoryRequest{}
|
|
_ bin.BareDecoder = &DeleteStoryRequest{}
|
|
)
|
|
|
|
func (d *DeleteStoryRequest) Zero() bool {
|
|
if d == nil {
|
|
return true
|
|
}
|
|
if !(d.StoryPosterChatID == 0) {
|
|
return false
|
|
}
|
|
if !(d.StoryID == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (d *DeleteStoryRequest) String() string {
|
|
if d == nil {
|
|
return "DeleteStoryRequest(nil)"
|
|
}
|
|
type Alias DeleteStoryRequest
|
|
return fmt.Sprintf("DeleteStoryRequest%+v", Alias(*d))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*DeleteStoryRequest) TypeID() uint32 {
|
|
return DeleteStoryRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*DeleteStoryRequest) TypeName() string {
|
|
return "deleteStory"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (d *DeleteStoryRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "deleteStory",
|
|
ID: DeleteStoryRequestTypeID,
|
|
}
|
|
if d == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "StoryPosterChatID",
|
|
SchemaName: "story_poster_chat_id",
|
|
},
|
|
{
|
|
Name: "StoryID",
|
|
SchemaName: "story_id",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (d *DeleteStoryRequest) Encode(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't encode deleteStory#87970aa8 as nil")
|
|
}
|
|
b.PutID(DeleteStoryRequestTypeID)
|
|
return d.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (d *DeleteStoryRequest) EncodeBare(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't encode deleteStory#87970aa8 as nil")
|
|
}
|
|
b.PutInt53(d.StoryPosterChatID)
|
|
b.PutInt32(d.StoryID)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (d *DeleteStoryRequest) Decode(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't decode deleteStory#87970aa8 to nil")
|
|
}
|
|
if err := b.ConsumeID(DeleteStoryRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode deleteStory#87970aa8: %w", err)
|
|
}
|
|
return d.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (d *DeleteStoryRequest) DecodeBare(b *bin.Buffer) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't decode deleteStory#87970aa8 to nil")
|
|
}
|
|
{
|
|
value, err := b.Int53()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode deleteStory#87970aa8: field story_poster_chat_id: %w", err)
|
|
}
|
|
d.StoryPosterChatID = value
|
|
}
|
|
{
|
|
value, err := b.Int32()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode deleteStory#87970aa8: field story_id: %w", err)
|
|
}
|
|
d.StoryID = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
|
func (d *DeleteStoryRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't encode deleteStory#87970aa8 as nil")
|
|
}
|
|
b.ObjStart()
|
|
b.PutID("deleteStory")
|
|
b.Comma()
|
|
b.FieldStart("story_poster_chat_id")
|
|
b.PutInt53(d.StoryPosterChatID)
|
|
b.Comma()
|
|
b.FieldStart("story_id")
|
|
b.PutInt32(d.StoryID)
|
|
b.Comma()
|
|
b.StripComma()
|
|
b.ObjEnd()
|
|
return nil
|
|
}
|
|
|
|
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
|
func (d *DeleteStoryRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
|
|
if d == nil {
|
|
return fmt.Errorf("can't decode deleteStory#87970aa8 to nil")
|
|
}
|
|
|
|
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
|
switch string(key) {
|
|
case tdjson.TypeField:
|
|
if err := b.ConsumeID("deleteStory"); err != nil {
|
|
return fmt.Errorf("unable to decode deleteStory#87970aa8: %w", err)
|
|
}
|
|
case "story_poster_chat_id":
|
|
value, err := b.Int53()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode deleteStory#87970aa8: field story_poster_chat_id: %w", err)
|
|
}
|
|
d.StoryPosterChatID = value
|
|
case "story_id":
|
|
value, err := b.Int32()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode deleteStory#87970aa8: field story_id: %w", err)
|
|
}
|
|
d.StoryID = value
|
|
default:
|
|
return b.Skip()
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// GetStoryPosterChatID returns value of StoryPosterChatID field.
|
|
func (d *DeleteStoryRequest) GetStoryPosterChatID() (value int64) {
|
|
if d == nil {
|
|
return
|
|
}
|
|
return d.StoryPosterChatID
|
|
}
|
|
|
|
// GetStoryID returns value of StoryID field.
|
|
func (d *DeleteStoryRequest) GetStoryID() (value int32) {
|
|
if d == nil {
|
|
return
|
|
}
|
|
return d.StoryID
|
|
}
|
|
|
|
// DeleteStory invokes method deleteStory#87970aa8 returning error if any.
|
|
func (c *Client) DeleteStory(ctx context.Context, request *DeleteStoryRequest) error {
|
|
var ok Ok
|
|
|
|
if err := c.rpc.Invoke(ctx, request, &ok); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|