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