copyWithWrapped method
WebApiModulesSettingsRateLocationTaxRateLocationTax
copyWithWrapped({
- Wrapped<
String?> ? rateId, - Wrapped<
int?> ? id, - Wrapped<
String?> ? internalChar, - Wrapped<
String?> ? locationId, - Wrapped<
String?> ? location, - Wrapped<
bool?> ? taxable, - Wrapped<
String?> ? modByUsersId, - Wrapped<
String?> ? modByUser, - 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
WebApiModulesSettingsRateLocationTaxRateLocationTax copyWithWrapped(
{Wrapped<String?>? rateId,
Wrapped<int?>? id,
Wrapped<String?>? internalChar,
Wrapped<String?>? locationId,
Wrapped<String?>? location,
Wrapped<bool?>? taxable,
Wrapped<String?>? modByUsersId,
Wrapped<String?>? modByUser,
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 WebApiModulesSettingsRateLocationTaxRateLocationTax(
rateId: (rateId != null ? rateId.value : this.rateId),
id: (id != null ? id.value : this.id),
internalChar:
(internalChar != null ? internalChar.value : this.internalChar),
locationId: (locationId != null ? locationId.value : this.locationId),
location: (location != null ? location.value : this.location),
taxable: (taxable != null ? taxable.value : this.taxable),
modByUsersId:
(modByUsersId != null ? modByUsersId.value : this.modByUsersId),
modByUser: (modByUser != null ? modByUser.value : this.modByUser),
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));
}