copyWith method

WebApiModulesHomeEmailRecipientEmailRecipient copyWith({
  1. String? companyContactId,
  2. String? companyId,
  3. String? company,
  4. String? companyType,
  5. String? companyTypeColor,
  6. String? contactId,
  7. String? salutation,
  8. String? nameFirstMiddleLast,
  9. String? person,
  10. String? lastName,
  11. String? firstName,
  12. String? middleInitial,
  13. String? jobTitle,
  14. String? contactTitleId,
  15. String? contactTitle,
  16. bool? isPrimary,
  17. String? activeDate,
  18. String? inactiveDate,
  19. bool? authorized,
  20. bool? orderNotify,
  21. String? officePhone,
  22. String? officeExtension,
  23. String? fax,
  24. String? faxExtension,
  25. String? email,
  26. String? directPhone,
  27. String? directExtension,
  28. String? pager,
  29. String? pagerPin,
  30. bool? printable,
  31. String? mobilePhone,
  32. bool? isAccountsReceivable,
  33. bool? isAccountsPayable,
  34. bool? inactive,
  35. String? dateStamp,
  36. String? auditNote,
  37. String? recordTitle,
  38. dynamic urlIdentifier,
  39. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  40. List<FwStandardDataFwCustomValue>? custom,
  41. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  42. FwStandardBusinessLogicFwBusinessLogic? original,
  43. List<FwStandardDataFwTranslatedValue>? translation,
  44. bool? hasImport,
  45. bool? hasDocuments,
  46. String? createdByUserId,
  47. String? createdByUserName,
  48. String? createdDateTime,
  49. String? modifiedByUserId,
  50. String? modifiedByUserName,
  51. String? modifiedDateTime,
})

Implementation

WebApiModulesHomeEmailRecipientEmailRecipient copyWith({
  String? companyContactId,
  String? companyId,
  String? company,
  String? companyType,
  String? companyTypeColor,
  String? contactId,
  String? salutation,
  String? nameFirstMiddleLast,
  String? person,
  String? lastName,
  String? firstName,
  String? middleInitial,
  String? jobTitle,
  String? contactTitleId,
  String? contactTitle,
  bool? isPrimary,
  String? activeDate,
  String? inactiveDate,
  bool? authorized,
  bool? orderNotify,
  String? officePhone,
  String? officeExtension,
  String? fax,
  String? faxExtension,
  String? email,
  String? directPhone,
  String? directExtension,
  String? pager,
  String? pagerPin,
  bool? printable,
  String? mobilePhone,
  bool? isAccountsReceivable,
  bool? isAccountsPayable,
  bool? inactive,
  String? dateStamp,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesHomeEmailRecipientEmailRecipient(
    companyContactId: companyContactId ?? this.companyContactId,
    companyId: companyId ?? this.companyId,
    company: company ?? this.company,
    companyType: companyType ?? this.companyType,
    companyTypeColor: companyTypeColor ?? this.companyTypeColor,
    contactId: contactId ?? this.contactId,
    salutation: salutation ?? this.salutation,
    nameFirstMiddleLast: nameFirstMiddleLast ?? this.nameFirstMiddleLast,
    person: person ?? this.person,
    lastName: lastName ?? this.lastName,
    firstName: firstName ?? this.firstName,
    middleInitial: middleInitial ?? this.middleInitial,
    jobTitle: jobTitle ?? this.jobTitle,
    contactTitleId: contactTitleId ?? this.contactTitleId,
    contactTitle: contactTitle ?? this.contactTitle,
    isPrimary: isPrimary ?? this.isPrimary,
    activeDate: activeDate ?? this.activeDate,
    inactiveDate: inactiveDate ?? this.inactiveDate,
    authorized: authorized ?? this.authorized,
    orderNotify: orderNotify ?? this.orderNotify,
    officePhone: officePhone ?? this.officePhone,
    officeExtension: officeExtension ?? this.officeExtension,
    fax: fax ?? this.fax,
    faxExtension: faxExtension ?? this.faxExtension,
    email: email ?? this.email,
    directPhone: directPhone ?? this.directPhone,
    directExtension: directExtension ?? this.directExtension,
    pager: pager ?? this.pager,
    pagerPin: pagerPin ?? this.pagerPin,
    printable: printable ?? this.printable,
    mobilePhone: mobilePhone ?? this.mobilePhone,
    isAccountsReceivable: isAccountsReceivable ?? this.isAccountsReceivable,
    isAccountsPayable: isAccountsPayable ?? this.isAccountsPayable,
    inactive: inactive ?? this.inactive,
    dateStamp: dateStamp ?? this.dateStamp,
    auditNote: auditNote ?? this.auditNote,
    recordTitle: recordTitle ?? this.recordTitle,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}