pub struct ListInputItemsQuery {
pub limit: Option<u32>,
pub order: Option<ListInputItemsOrder>,
pub after: Option<String>,
pub include: Option<Vec<String>>,
}Available on crate feature
response-types only.Expand description
Query parameters for listing input items.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
order: Option<ListInputItemsOrder>The order to return the input items in. Default is desc.
after: Option<String>An item ID to list items after, used in pagination.
include: Option<Vec<String>>Additional fields to include in the response.
Trait Implementations§
Source§impl Clone for ListInputItemsQuery
impl Clone for ListInputItemsQuery
Source§fn clone(&self) -> ListInputItemsQuery
fn clone(&self) -> ListInputItemsQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListInputItemsQuery
impl Debug for ListInputItemsQuery
Source§impl Default for ListInputItemsQuery
impl Default for ListInputItemsQuery
Source§fn default() -> ListInputItemsQuery
fn default() -> ListInputItemsQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListInputItemsQuery
impl PartialEq for ListInputItemsQuery
Source§impl Serialize for ListInputItemsQuery
impl Serialize for ListInputItemsQuery
impl StructuralPartialEq for ListInputItemsQuery
Auto Trait Implementations§
impl Freeze for ListInputItemsQuery
impl RefUnwindSafe for ListInputItemsQuery
impl Send for ListInputItemsQuery
impl Sync for ListInputItemsQuery
impl Unpin for ListInputItemsQuery
impl UnsafeUnpin for ListInputItemsQuery
impl UnwindSafe for ListInputItemsQuery
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