Card

data class Card(val brand: String, val fingerprint: String, val firstSix: String, val lastFour: String)

Additional metadata for a Customer's PaymentMethod Card.

Parameters

brand

The card brand. Possible values are:

  • amex

  • diners

  • discover

  • jcb

  • mastercard

  • unionpay

  • visa

  • unknown

fingerprint

Uniquely identifies the content of the card number. It can be used to determine whether two customers who have signed up have used the same card number.

firstSix

The first six digits of the associated card data.

lastFour

The last four digits of the associated card data.

Constructors

Link copied to clipboard
constructor(brand: String, fingerprint: String, firstSix: String, lastFour: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard