Credit cards

Data#

Creator#

The EID of client who the credit card belongs to.

Last four digits#

The last four digits of the credit card.

  • Type
    • String
  • Validation
    • Required

Expiration date#

The expiration date of the credit card.

  • Type
    • String
  • Validation
    • Required

Holder name#

  • Type
    • String
  • Validation
    • Required

PayMe token#

  • Type
    • String
  • Validation
    • Required

Sample data structure#

{
_id: "someID",
creationDate: "someday",
creator: "someID",
lastFourDigits: "1234",
expirationDate: "04/22",
holderName: "Richard Akman",
paymeToken: "SomeToken"
}