pub struct ListInvoicesParams {
pub billing_start_date: Option<String>,
pub billing_end_date: Option<String>,
pub limit: Option<String>,
pub cursor: Option<String>,
}
Expand description
struct for passing parameters to the method list_invoices
Fields§
§billing_start_date: Option<String>
§billing_end_date: Option<String>
§limit: Option<String>
Number of results per page. The maximum is 200.
cursor: Option<String>
Cursor value from the next_cursor
field of a previous response, used to retrieve the next page. To request the first page, this should be empty.
Trait Implementations§
Source§impl Clone for ListInvoicesParams
impl Clone for ListInvoicesParams
Source§fn clone(&self) -> ListInvoicesParams
fn clone(&self) -> ListInvoicesParams
Returns a duplicate 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 ListInvoicesParams
impl Debug for ListInvoicesParams
Source§impl Default for ListInvoicesParams
impl Default for ListInvoicesParams
Source§fn default() -> ListInvoicesParams
fn default() -> ListInvoicesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListInvoicesParams
impl RefUnwindSafe for ListInvoicesParams
impl Send for ListInvoicesParams
impl Sync for ListInvoicesParams
impl Unpin for ListInvoicesParams
impl UnwindSafe for ListInvoicesParams
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