Customer constructor
Customer({
- String? id,
- String? referenceId,
- String? createdAt,
- CustomerTaxIds? taxIds,
- int? version,
- String? updatedAt,
- String? familyName,
- String? givenName,
- String? companyName,
- String? phoneNumber,
- Address? address,
- String? emailAddress,
- String? note,
- CustomerPreferences? preferences,
- String? birthday,
- List<
Card> ? cards, - CustomerCreationSource? creationSource,
- List<
String> ? groupIds, - String? nickname,
- 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
});