Skip to main content

account.getWallPapers

Returns a list of available wallpapers.

func (c *Client) AccountGetWallPapers(ctx context.Context, hash int64) (AccountWallPapersClass, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.AccountGetWallPapers(ctx, hash)
if err != nil {
return err
}
_ = res // AccountWallPapersClass
return nil
})

Parameters

NameTypeRequiredDescription
Hashint64yesHash used for caching, for more info click here.

Returns

AccountWallPapersClass

References