OBJECT

AppliedGiftCard

Details about the gift card used on the checkout.

link GraphQL Schema definition

1type AppliedGiftCard implements Node {
2
3# The amount that was used taken from the Gift Card by applying it.
4amountUsed: Money!
5
6# The amount left on the Gift Card.
7balance: Money!
8
9id: ID!
10
11# The last characters of the Gift Card code
12lastCharacters: String!
13
14}