pub struct APAgingSummaryParams {
pub customer: Option<Vec<CustomerId>>,
pub qzurl: Option<String>,
pub vendor: Option<Vec<VendorId>>,
pub date_macro: Option<DateMacro>,
pub department: Option<String>,
pub report_date: Option<NaiveDate>,
pub sort_order: Option<SortOrder>,
pub aging_method: Option<AgingMethod>,
}Expand description
Parameters for the APAgingSummary report.
Fields§
§customer: Option<Vec<CustomerId>>§qzurl: Option<String>§vendor: Option<Vec<VendorId>>§date_macro: Option<DateMacro>§department: Option<String>§report_date: Option<NaiveDate>§sort_order: Option<SortOrder>§aging_method: Option<AgingMethod>Implementations§
Source§impl APAgingSummaryParams
impl APAgingSummaryParams
pub fn new() -> Self
pub fn customer(self, param: impl Into<CustomerId>) -> Self
pub fn customers(self, params: Vec<CustomerId>) -> Self
pub fn qzurl(self, param: impl Into<String>) -> Self
pub fn vendor(self, param: impl Into<VendorId>) -> Self
pub fn vendors(self, params: Vec<VendorId>) -> Self
pub fn date_macro(self, param: impl Into<DateMacro>) -> Self
pub fn department(self, param: impl Into<String>) -> Self
pub fn report_date(self, param: impl Into<NaiveDate>) -> Self
pub fn sort_order(self, param: impl Into<SortOrder>) -> Self
pub fn aging_method(self, param: impl Into<AgingMethod>) -> Self
Trait Implementations§
Source§impl Debug for APAgingSummaryParams
impl Debug for APAgingSummaryParams
Source§impl Default for APAgingSummaryParams
impl Default for APAgingSummaryParams
Source§fn default() -> APAgingSummaryParams
fn default() -> APAgingSummaryParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for APAgingSummaryParams
impl RefUnwindSafe for APAgingSummaryParams
impl Send for APAgingSummaryParams
impl Sync for APAgingSummaryParams
impl Unpin for APAgingSummaryParams
impl UnwindSafe for APAgingSummaryParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more