account.getMultiWallPapers
Get info about multiple wallpapers
func (c *Client) AccountGetMultiWallPapers(ctx context.Context, wallpapers []InputWallPaperClass) ([]WallPaperClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.AccountGetMultiWallPapers(ctx, wallpapers)
if err != nil {
return err
}
_ = res // []WallPaperClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Wallpapers | []InputWallPaperClass | yes | Wallpapers to fetch info about |
Returns
Possible errors
| Code | Type | Description |
|---|---|---|
| 400 | WALLPAPER_INVALID | The specified wallpaper is invalid. |
References
- Official documentation
- Generated Go reference
- TL definition:
account.getMultiWallPapers#65ad71dc