pub struct BatchRetrieveOrdersRequest {
pub location_id: Option<String>,
pub order_ids: Vec<String>,
}
Expand description
This is a model class for BatchRetrieveOrdersRequest type.
Fields§
§location_id: Option<String>
The ID of the location for these orders. This field is optional: omit it to retrieve orders within the scope of the current authorization’s merchant ID.
order_ids: Vec<String>
The IDs of the orders to retrieve. A maximum of 100 orders can be retrieved per request.
Trait Implementations§
Source§impl Clone for BatchRetrieveOrdersRequest
impl Clone for BatchRetrieveOrdersRequest
Source§fn clone(&self) -> BatchRetrieveOrdersRequest
fn clone(&self) -> BatchRetrieveOrdersRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BatchRetrieveOrdersRequest
impl Debug for BatchRetrieveOrdersRequest
Source§impl Default for BatchRetrieveOrdersRequest
impl Default for BatchRetrieveOrdersRequest
Source§fn default() -> BatchRetrieveOrdersRequest
fn default() -> BatchRetrieveOrdersRequest
Returns the “default value” for a type. Read more
impl Eq for BatchRetrieveOrdersRequest
impl StructuralPartialEq for BatchRetrieveOrdersRequest
Auto Trait Implementations§
impl Freeze for BatchRetrieveOrdersRequest
impl RefUnwindSafe for BatchRetrieveOrdersRequest
impl Send for BatchRetrieveOrdersRequest
impl Sync for BatchRetrieveOrdersRequest
impl Unpin for BatchRetrieveOrdersRequest
impl UnwindSafe for BatchRetrieveOrdersRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.