copyWith method
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,
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);
}