ENUM

EquipHeroAssetsErrorCode

EquipHeroAssetsErrorCode defines a client error that occurs when equipping hero assets.

link GraphQL Schema definition

1enum EquipHeroAssetsErrorCode {
2
3# The requesting user did not have permission to equip the assets.
4FORBIDDEN
5
6# One of the requested asset IDs was not valid.
7INVALID_ASSET_ID
8
9# Multiple assets were specified in a single asset type.
10MULTIPLE_ASSETS_PER_TYPE
11
12# Some other unexpected error occured.
13UNKNOWN_ERROR
14}