copyWithWrapped method
WebApiModulesSettingsFiscalMonthFiscalMonth
copyWithWrapped({
- Wrapped<
String?> ? fiscalMonthId, - Wrapped<
String?> ? fiscalYearId, - Wrapped<
String?> ? year, - Wrapped<
int?> ? month, - Wrapped<
String?> ? monthDisplay, - Wrapped<
String?> ? fromDate, - Wrapped<
String?> ? toDate, - Wrapped<
String?> ? monthYear, - Wrapped<
int?> ? workDays, - Wrapped<
String?> ? fiscalOrder, - Wrapped<
bool?> ? closed, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesSettingsFiscalMonthFiscalMonth copyWithWrapped(
{Wrapped<String?>? fiscalMonthId,
Wrapped<String?>? fiscalYearId,
Wrapped<String?>? year,
Wrapped<int?>? month,
Wrapped<String?>? monthDisplay,
Wrapped<String?>? fromDate,
Wrapped<String?>? toDate,
Wrapped<String?>? monthYear,
Wrapped<int?>? workDays,
Wrapped<String?>? fiscalOrder,
Wrapped<bool?>? closed,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesSettingsFiscalMonthFiscalMonth(
fiscalMonthId:
(fiscalMonthId != null ? fiscalMonthId.value : this.fiscalMonthId),
fiscalYearId:
(fiscalYearId != null ? fiscalYearId.value : this.fiscalYearId),
year: (year != null ? year.value : this.year),
month: (month != null ? month.value : this.month),
monthDisplay:
(monthDisplay != null ? monthDisplay.value : this.monthDisplay),
fromDate: (fromDate != null ? fromDate.value : this.fromDate),
toDate: (toDate != null ? toDate.value : this.toDate),
monthYear: (monthYear != null ? monthYear.value : this.monthYear),
workDays: (workDays != null ? workDays.value : this.workDays),
fiscalOrder:
(fiscalOrder != null ? fiscalOrder.value : this.fiscalOrder),
closed: (closed != null ? closed.value : this.closed),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle:
(recordTitle != null ? recordTitle.value : this.recordTitle),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
translation:
(translation != null ? translation.value : this.translation));
}