Card
No description
type Card implements Node {
id: ID!
cardUsageType: CardUsageType @deprecated
cardHolderName: String
expiryYear: UInt!
expiryMonth: UInt!
network: CardNetwork
first6: String @deprecated
bin: String!
last4: String!
clientId: String
type: CardType
issuer: CardIssuerDetails
}
Fields
id
● ID!
non-null scalar
cardUsageType
● CardUsageType
deprecated enum
DEPRECATEDThis field will be removed in a future release.
cardHolderName
● String
scalar
expiryYear
● UInt!
non-null scalar
expiryMonth
● UInt!
non-null scalar
network
● CardNetwork
enum
first6
● String
deprecated scalar
DEPRECATEDThis field will be removed in a future release. Please use
bin
instead.
bin
● String!
non-null scalar
last4
● String!
non-null scalar
clientId
● String
scalar
type
● CardType
enum
issuer
● CardIssuerDetails
object
Interfaces
Node
interface
An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the
node(id: ID!)
query.