OBJECT
HeroAsset
Representation of a Hero asset.
link GraphQL Schema definition
1 type HeroAsset { 2 3 # User colorization of the asset, if any. 4 : String 5 6 # URI to the asset's color mask image. 7 : String 8 9 # When does this asset expire. 10 : Time 11 12 # Is this asset new to the requesting user. 13 : Boolean 14 15 # URI to the asset's line art image. 16 : 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. 20 : [HeroSkeleton!] 21 22 # The type of the asset. 23 : HeroAssetType! 24 25 }