OBJECT

TokenBundleAsset

Assets for a TokenBundleProduct. Each asset will have a 1x, 2x, 3x sizing w/ their respective URLs. Different sizing is required for mobile clients.

link GraphQL Schema definition

1type TokenBundleAsset {
2
3# URL of asset of size 1x.
4imageURL1x: String!
5
6# URL of asset size 2x.
7imageURL2x: String!
8
9# URL of asset size 3x.
10imageURL3x: String!
11
12# Key identifier for an asset.
13# ex) "bundleImg", "promoImg", etc.
14key: String!
15
16}