OBJECT

HeroAsset

Representation of a Hero asset.

link GraphQL Schema definition

1type HeroAsset {
2
3# User colorization of the asset, if any.
4color: String
5
6# URI to the asset's color mask image.
7colorMaskURI: String
8
9# When does this asset expire.
10expiresAt: Time
11
12# Is this asset new to the requesting user.
13isNew: Boolean
14
15# URI to the asset's line art image.
16lineArtURI: String
17
18# What skeletons does this asset function properly on. A NULL entry here
19# indicates that the asset will function on all skeletons.
20supportedSkeletons: [HeroSkeleton!]
21
22# The type of the asset.
23type: HeroAssetType!
24
25}