CardTokenisationResponse constructor

CardTokenisationResponse({
  1. String? type,
  2. String? token,
  3. String? expiresOn,
  4. int? expiryMonth,
  5. int? expiryYear,
  6. String? scheme,
  7. String? last4,
  8. String? bin,
  9. String? cardType,
  10. String? cardCategory,
  11. String? issuer,
  12. String? issuerCountry,
  13. String? productId,
  14. String? productType,
  15. BillingModel? billingAddress,
  16. PhoneModel? phone,
  17. String? name,
})

Implementation

CardTokenisationResponse({
  this.type,
  this.token,
  this.expiresOn,
  this.expiryMonth,
  this.expiryYear,
  this.scheme,
  this.last4,
  this.bin,
  this.cardType,
  this.cardCategory,
  this.issuer,
  this.issuerCountry,
  this.productId,
  this.productType,
  this.billingAddress,
  this.phone,
  this.name,
});