copyWith method
Implementation
WebApiModulesBillingVendorInvoiceResetToDefaultRequest copyWith(
{String? vendorInvoiceId,
String? purchaseOrderId,
DateTime? billingStartDate,
DateTime? billingEndDate,
bool? showAll}) {
return WebApiModulesBillingVendorInvoiceResetToDefaultRequest(
vendorInvoiceId: vendorInvoiceId ?? this.vendorInvoiceId,
purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
billingStartDate: billingStartDate ?? this.billingStartDate,
billingEndDate: billingEndDate ?? this.billingEndDate,
showAll: showAll ?? this.showAll);
}