pub struct GetInvoiceMtdParams {
pub customer_id: String,
pub month: Option<String>,
pub year: Option<String>,
}
Expand description
struct for passing parameters to the method get_invoice_mtd
Fields§
§customer_id: String
Alphanumeric string identifying the customer.
month: Option<String>
2-digit month.
year: Option<String>
4-digit year.
Trait Implementations§
Source§impl Clone for GetInvoiceMtdParams
impl Clone for GetInvoiceMtdParams
Source§fn clone(&self) -> GetInvoiceMtdParams
fn clone(&self) -> GetInvoiceMtdParams
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetInvoiceMtdParams
impl Debug for GetInvoiceMtdParams
Source§impl Default for GetInvoiceMtdParams
impl Default for GetInvoiceMtdParams
Source§fn default() -> GetInvoiceMtdParams
fn default() -> GetInvoiceMtdParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetInvoiceMtdParams
impl RefUnwindSafe for GetInvoiceMtdParams
impl Send for GetInvoiceMtdParams
impl Sync for GetInvoiceMtdParams
impl Unpin for GetInvoiceMtdParams
impl UnwindSafe for GetInvoiceMtdParams
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