OBJECT

StripePaymentMethod

link GraphQL Schema definition

1type StripePaymentMethod {
2
3# The brand of this payment method
4brand: String!
5
6# The expiration month of this payment method
7expMonth: String!
8
9# The expiration year of this payment method
10expYear: String!
11
12# The stripe payment id of this payment method
13id: String!
14
15# The last four digits of this payment method
16lastFour: String!
17
18}