PaymentSource
Represents a payment source stored for user in payment gateway, such as credit card.
type PaymentSource {
id: String!
gateway: String!
creditCardInfo: CreditCard
}
Fields
PaymentSource.id ● String! non-null scalar
Stored payment method ID.
PaymentSource.gateway ● String! non-null scalar
Payment gateway name.
PaymentSource.creditCardInfo ● CreditCard object
Stored credit card details if available.
Member Of
User object