OBJECT

GiftCardCode

GiftCardCode that can be claimed to add a monetary balance to a user's account.

link GraphQL Schema definition

1type GiftCardCode implements Claimable {
2
3# A description of what is claimable for the code.
4description: String!
5
6# The ID of the Gift Card code.
7id: ID!
8
9# The field that gives us claim information for the logged in user.
10self: SelfClaimEdge
11
12# The type is `ClaimableType.GIFT_CARD_CODE`.
13type: ClaimableType!
14
15}

link Required by

This element is not required by anyone