copyWithWrapped method
Implementation
WebApiModulesExportsOnlineOrderTrackingExportOnlineOrderTrackingExportRequest
copyWithWrapped(
{Wrapped<DateTime?>? fromDate,
Wrapped<DateTime?>? toDate,
Wrapped<bool?>? includeOrdersWithoutTracking,
Wrapped<String>? dataExportFormatId}) {
return WebApiModulesExportsOnlineOrderTrackingExportOnlineOrderTrackingExportRequest(
fromDate: (fromDate != null ? fromDate.value : this.fromDate),
toDate: (toDate != null ? toDate.value : this.toDate),
includeOrdersWithoutTracking: (includeOrdersWithoutTracking != null
? includeOrdersWithoutTracking.value
: this.includeOrdersWithoutTracking),
dataExportFormatId: (dataExportFormatId != null
? dataExportFormatId.value
: this.dataExportFormatId));
}