pub struct DownloadLineItemsRequest {
pub file_spec: Option<String>,
pub filter_ids: Option<Vec<i64>>,
pub filter_type: Option<String>,
pub format: Option<String>,
}Expand description
Request to fetch stored line items.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- downloadlineitems lineitems (request)
Fields§
§file_spec: Option<String>File specification (column names, types, order) in which the line items will be returned. Default to EWF.
filter_ids: Option<Vec<i64>>Ids of the specified filter type used to filter line items to fetch. If omitted, all the line items will be returned.
filter_type: Option<String>Filter type used to filter line items to fetch.
format: Option<String>Format in which the line items will be returned. Default to CSV.
Trait Implementations§
Source§impl Clone for DownloadLineItemsRequest
impl Clone for DownloadLineItemsRequest
Source§fn clone(&self) -> DownloadLineItemsRequest
fn clone(&self) -> DownloadLineItemsRequest
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 DownloadLineItemsRequest
impl Debug for DownloadLineItemsRequest
Source§impl Default for DownloadLineItemsRequest
impl Default for DownloadLineItemsRequest
Source§fn default() -> DownloadLineItemsRequest
fn default() -> DownloadLineItemsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DownloadLineItemsRequest
impl<'de> Deserialize<'de> for DownloadLineItemsRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DownloadLineItemsRequest
impl Serialize for DownloadLineItemsRequest
impl RequestValue for DownloadLineItemsRequest
Auto Trait Implementations§
impl Freeze for DownloadLineItemsRequest
impl RefUnwindSafe for DownloadLineItemsRequest
impl Send for DownloadLineItemsRequest
impl Sync for DownloadLineItemsRequest
impl Unpin for DownloadLineItemsRequest
impl UnwindSafe for DownloadLineItemsRequest
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