pub struct GetLinkedCollectionsParams {
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
pub status: Option<Value>,
}
Expand description
struct for passing parameters to the method [get_linked_collections
]
Fields§
§page_cursor: Option<String>
Page cursor to get the next page, for example - "MjAyMy0xMi0xMyAyMDozNjowOC4zMDI=:MTEwMA=="
page_size: Option<f64>
Number of items per page (max 100), requesting more then 100 will return 100 items
status: Option<Value>
A comma separated list of statuses to filter. Default is "COMPLETED"
Implementations§
Source§impl GetLinkedCollectionsParams
impl GetLinkedCollectionsParams
Sourcepub fn builder() -> GetLinkedCollectionsParamsBuilder
pub fn builder() -> GetLinkedCollectionsParamsBuilder
Create an instance of GetLinkedCollectionsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetLinkedCollectionsParams
impl Clone for GetLinkedCollectionsParams
Source§fn clone(&self) -> GetLinkedCollectionsParams
fn clone(&self) -> GetLinkedCollectionsParams
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 moreAuto Trait Implementations§
impl Freeze for GetLinkedCollectionsParams
impl RefUnwindSafe for GetLinkedCollectionsParams
impl Send for GetLinkedCollectionsParams
impl Sync for GetLinkedCollectionsParams
impl Unpin for GetLinkedCollectionsParams
impl UnwindSafe for GetLinkedCollectionsParams
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