copyWith method

WebApiModulesSettingsMarketSegmentJobMarketSegmentJob copyWith({
  1. String? marketSegmentJobId,
  2. String? marketSegmentJob,
  3. String? marketTypeId,
  4. String? marketType,
  5. String? marketSegmentId,
  6. String? marketSegment,
  7. String? dateStamp,
  8. String? auditNote,
  9. String? recordTitle,
  10. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  11. List<FwStandardDataFwCustomValue>? custom,
  12. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  13. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesSettingsMarketSegmentJobMarketSegmentJob copyWith(
    {String? marketSegmentJobId,
    String? marketSegmentJob,
    String? marketTypeId,
    String? marketType,
    String? marketSegmentId,
    String? marketSegment,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesSettingsMarketSegmentJobMarketSegmentJob(
      marketSegmentJobId: marketSegmentJobId ?? this.marketSegmentJobId,
      marketSegmentJob: marketSegmentJob ?? this.marketSegmentJob,
      marketTypeId: marketTypeId ?? this.marketTypeId,
      marketType: marketType ?? this.marketType,
      marketSegmentId: marketSegmentId ?? this.marketSegmentId,
      marketSegment: marketSegment ?? this.marketSegment,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}