pub struct GetLinkedTokensParams {
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_tokens
]
Fields§
§page_cursor: Option<String>
Page cursor to get the next page
page_size: Option<f64>
Number of items per page, requesting more then max will return max items
status: Option<Value>
A comma separated list of statuses to filter. Default is "COMPLETED"
Implementations§
Source§impl GetLinkedTokensParams
impl GetLinkedTokensParams
Sourcepub fn builder() -> GetLinkedTokensParamsBuilder
pub fn builder() -> GetLinkedTokensParamsBuilder
Create an instance of GetLinkedTokensParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetLinkedTokensParams
impl Clone for GetLinkedTokensParams
Source§fn clone(&self) -> GetLinkedTokensParams
fn clone(&self) -> GetLinkedTokensParams
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 GetLinkedTokensParams
impl RefUnwindSafe for GetLinkedTokensParams
impl Send for GetLinkedTokensParams
impl Sync for GetLinkedTokensParams
impl Unpin for GetLinkedTokensParams
impl UnwindSafe for GetLinkedTokensParams
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