// 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{} ) // AccountGetThemeRequest represents TL type `account.getTheme#3a5869ec`. // Get theme information // // See https://core.telegram.org/method/account.getTheme for reference. type AccountGetThemeRequest struct { // Theme format, a string that identifies the theming engines supported by the client Format string // Theme Theme InputThemeClass } // AccountGetThemeRequestTypeID is TL type id of AccountGetThemeRequest. const AccountGetThemeRequestTypeID = 0x3a5869ec // Ensuring interfaces in compile-time for AccountGetThemeRequest. var ( _ bin.Encoder = &AccountGetThemeRequest{} _ bin.Decoder = &AccountGetThemeRequest{} _ bin.BareEncoder = &AccountGetThemeRequest{} _ bin.BareDecoder = &AccountGetThemeRequest{} ) func (g *AccountGetThemeRequest) Zero() bool { if g == nil { return true } if !(g.Format == "") { return false } if !(g.Theme == nil) { return false } return true } // String implements fmt.Stringer. func (g *AccountGetThemeRequest) String() string { if g == nil { return "AccountGetThemeRequest(nil)" } type Alias AccountGetThemeRequest return fmt.Sprintf("AccountGetThemeRequest%+v", Alias(*g)) } // FillFrom fills AccountGetThemeRequest from given interface. func (g *AccountGetThemeRequest) FillFrom(from interface { GetFormat() (value string) GetTheme() (value InputThemeClass) }) { g.Format = from.GetFormat() g.Theme = from.GetTheme() } // TypeID returns type id in TL schema. // // See https://core.telegram.org/mtproto/TL-tl#remarks. func (*AccountGetThemeRequest) TypeID() uint32 { return AccountGetThemeRequestTypeID } // TypeName returns name of type in TL schema. func (*AccountGetThemeRequest) TypeName() string { return "account.getTheme" } // TypeInfo returns info about TL type. func (g *AccountGetThemeRequest) TypeInfo() tdp.Type { typ := tdp.Type{ Name: "account.getTheme", ID: AccountGetThemeRequestTypeID, } if g == nil { typ.Null = true return typ } typ.Fields = []tdp.Field{ { Name: "Format", SchemaName: "format", }, { Name: "Theme", SchemaName: "theme", }, } return typ } // Encode implements bin.Encoder. func (g *AccountGetThemeRequest) Encode(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't encode account.getTheme#3a5869ec as nil") } b.PutID(AccountGetThemeRequestTypeID) return g.EncodeBare(b) } // EncodeBare implements bin.BareEncoder. func (g *AccountGetThemeRequest) EncodeBare(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't encode account.getTheme#3a5869ec as nil") } b.PutString(g.Format) if g.Theme == nil { return fmt.Errorf("unable to encode account.getTheme#3a5869ec: field theme is nil") } if err := g.Theme.Encode(b); err != nil { return fmt.Errorf("unable to encode account.getTheme#3a5869ec: field theme: %w", err) } return nil } // Decode implements bin.Decoder. func (g *AccountGetThemeRequest) Decode(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't decode account.getTheme#3a5869ec to nil") } if err := b.ConsumeID(AccountGetThemeRequestTypeID); err != nil { return fmt.Errorf("unable to decode account.getTheme#3a5869ec: %w", err) } return g.DecodeBare(b) } // DecodeBare implements bin.BareDecoder. func (g *AccountGetThemeRequest) DecodeBare(b *bin.Buffer) error { if g == nil { return fmt.Errorf("can't decode account.getTheme#3a5869ec to nil") } { value, err := b.String() if err != nil { return fmt.Errorf("unable to decode account.getTheme#3a5869ec: field format: %w", err) } g.Format = value } { value, err := DecodeInputTheme(b) if err != nil { return fmt.Errorf("unable to decode account.getTheme#3a5869ec: field theme: %w", err) } g.Theme = value } return nil } // GetFormat returns value of Format field. func (g *AccountGetThemeRequest) GetFormat() (value string) { if g == nil { return } return g.Format } // GetTheme returns value of Theme field. func (g *AccountGetThemeRequest) GetTheme() (value InputThemeClass) { if g == nil { return } return g.Theme } // AccountGetTheme invokes method account.getTheme#3a5869ec returning error if any. // Get theme information // // Possible errors: // // 400 THEME_FORMAT_INVALID: Invalid theme format provided. // 400 THEME_INVALID: Invalid theme provided. // 400 THEME_SLUG_INVALID: The specified theme slug is invalid. // // See https://core.telegram.org/method/account.getTheme for reference. func (c *Client) AccountGetTheme(ctx context.Context, request *AccountGetThemeRequest) (*Theme, error) { var result Theme if err := c.rpc.Invoke(ctx, request, &result); err != nil { return nil, err } return &result, nil }