IssuingCardholderCreateOptions constructor

const IssuingCardholderCreateOptions({
  1. required CardholderBilling billing,
  2. CardholderCompany? company,
  3. String? email,
  4. List<String>? expand,
  5. CardholderIndividual? individual,
  6. Map<String, String>? metadata,
  7. required String name,
  8. String? phoneNumber,
  9. List<IssuingCardholderPreferredLocalesItem>? preferredLocales,
  10. CardholderSpendingControls? spendingControls,
  11. BillingMeterStatus? status,
  12. IssuingCardholderType? type,
})

Implementation

const IssuingCardholderCreateOptions({
  required this.billing,
  this.company,
  this.email,
  this.expand,
  this.individual,
  this.metadata,
  required this.name,
  this.phoneNumber,
  this.preferredLocales,
  this.spendingControls,
  this.status,
  this.type,
});