// 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{} ) // HelpGetPromoDataRequest represents TL type `help.getPromoData#c0977421`. // Returns a set of useful suggestions and PSA/MTProxy sponsored peers, see here »¹ for // more info. // // Links: // 1. https://core.telegram.org/api/config#suggestions // // See https://core.telegram.org/method/help.getPromoData for reference. type HelpGetPromoDataRequest struct { } // HelpGetPromoDataRequestTypeID is TL type id of HelpGetPromoDataRequest. const HelpGetPromoDataRequestTypeID = 0xc0977421 // Ensuring interfaces in compile-time for HelpGetPromoDataRequest. var ( _ bin.Encoder = &HelpGetPromoDataRequest{} _ bin.Decoder = &HelpGetPromoDataRequest{} _ bin.BareEncoder = &HelpGetPromoDataRequest{} _ bin.BareDecoder = &HelpGetPromoDataRequest{} ) func (g *HelpGetPromoDataRequest) Zero() bool { if g == nil { return true } return true } // String implements fmt.Stringer. func (g *HelpGetPromoDataRequest) String() string { if g == nil { return "HelpGetPromoDataRequest(nil)" } type Alias HelpGetPromoDataRequest return fmt.Sprintf("HelpGetPromoDataRequest%+v", Alias(*g)) } // TypeID returns type id in TL schema. // // See https://core.telegram.org/mtproto/TL-tl#remarks. func (*HelpGetPromoDataRequest) TypeID() uint32 { return HelpGetPromoDataRequestTypeID } // TypeName returns name of type in TL schema. func (*HelpGetPromoDataRequest) TypeName() string { return "help.getPromoData" } // TypeInfo returns info about TL type. func (g *HelpGetPromoDataRequest) TypeInfo() tdp.Type { typ := tdp.Type{ Name: "help.getPromoData", ID: HelpGetPromoDataRequestTypeID, } if g == nil { typ.Null = true return typ } typ.Fields = []tdp.Field{} return typ } // Encode implements bin.Encoder. func (g *HelpGetPromoDataRequest) Encode(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't encode help.getPromoData#c0977421 as nil") } b.PutID(HelpGetPromoDataRequestTypeID) return g.EncodeBare(b) } // EncodeBare implements bin.BareEncoder. func (g *HelpGetPromoDataRequest) EncodeBare(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't encode help.getPromoData#c0977421 as nil") } return nil } // Decode implements bin.Decoder. func (g *HelpGetPromoDataRequest) Decode(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't decode help.getPromoData#c0977421 to nil") } if err := b.ConsumeID(HelpGetPromoDataRequestTypeID); err != nil { return fmt.Errorf("unable to decode help.getPromoData#c0977421: %w", err) } return g.DecodeBare(b) } // DecodeBare implements bin.BareDecoder. func (g *HelpGetPromoDataRequest) DecodeBare(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't decode help.getPromoData#c0977421 to nil") } return nil } // HelpGetPromoData invokes method help.getPromoData#c0977421 returning error if any. // Returns a set of useful suggestions and PSA/MTProxy sponsored peers, see here »¹ for // more info. // // Links: // 1. https://core.telegram.org/api/config#suggestions // // See https://core.telegram.org/method/help.getPromoData for reference. func (c *Client) HelpGetPromoData(ctx context.Context) (HelpPromoDataClass, error) { var result HelpPromoDataBox request := &HelpGetPromoDataRequest{} if err := c.rpc.Invoke(ctx, request, &result); err != nil { return nil, err } return result.PromoData, nil }