CreateCustomerRequest constructor

const CreateCustomerRequest({
  1. String? idempotencyKey,
  2. String? givenName,
  3. String? familyName,
  4. String? companyName,
  5. String? nickname,
  6. String? emailAddress,
  7. Address? address,
  8. String? phoneNumber,
  9. String? referenceId,
  10. String? note,
  11. String? birthday,
  12. List<CustomerTaxIds>? taxIds,
})

Implementation

const CreateCustomerRequest({
  this.idempotencyKey,
  this.givenName,
  this.familyName,
  this.companyName,
  this.nickname,
  this.emailAddress,
  this.address,
  this.phoneNumber,
  this.referenceId,
  this.note,
  this.birthday,
  this.taxIds,
});