Customer constructor

Customer({
  1. String? id,
  2. String? referenceId,
  3. String? createdAt,
  4. CustomerTaxIds? taxIds,
  5. int? version,
  6. String? updatedAt,
  7. String? familyName,
  8. String? givenName,
  9. String? companyName,
  10. String? phoneNumber,
  11. Address? address,
  12. String? emailAddress,
  13. String? note,
  14. CustomerPreferences? preferences,
  15. String? birthday,
  16. List<Card>? cards,
  17. CustomerCreationSource? creationSource,
  18. List<String>? groupIds,
  19. String? nickname,
  20. List<String>? segmentIds,
})

Implementation

Customer({
  this.id, this.referenceId, this.createdAt, this.taxIds,
this.version, this.updatedAt, this.familyName, this.givenName,
this.companyName, this.phoneNumber, this.address, this.emailAddress,
  this.note, this.preferences, this.birthday, this.cards,
this.creationSource, this.groupIds, this.nickname, this.segmentIds
});