pub struct ListOwnedCollectionsParams {
pub ncw_id: Option<String>,
pub wallet_type: Option<String>,
pub search: Option<String>,
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
pub sort: Option<Vec<String>>,
pub order: Option<String>,
pub status: Option<String>,
}
Expand description
struct for passing parameters to the method [list_owned_collections
]
Fields§
§ncw_id: Option<String>
Tenant’s Non-Custodial Wallet ID
wallet_type: Option<String>
Wallet type, it can be VAULT_ACCOUNT
or END_USER_WALLET
search: Option<String>
Search owned collections. Possible criteria for search: collection name, collection contract address.
page_cursor: Option<String>
Page cursor to fetch
page_size: Option<f64>
Items per page (max 100)
sort: Option<Vec<String>>
Sort by param, it can be one param or a list of params separated by comma
order: Option<String>
Order direction, it can be ASC
for ascending or DESC
for descending
status: Option<String>
Token ownership status
Implementations§
Source§impl ListOwnedCollectionsParams
impl ListOwnedCollectionsParams
Sourcepub fn builder() -> ListOwnedCollectionsParamsBuilder
pub fn builder() -> ListOwnedCollectionsParamsBuilder
Create an instance of ListOwnedCollectionsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for ListOwnedCollectionsParams
impl Clone for ListOwnedCollectionsParams
Source§fn clone(&self) -> ListOwnedCollectionsParams
fn clone(&self) -> ListOwnedCollectionsParams
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 ListOwnedCollectionsParams
impl RefUnwindSafe for ListOwnedCollectionsParams
impl Send for ListOwnedCollectionsParams
impl Sync for ListOwnedCollectionsParams
impl Unpin for ListOwnedCollectionsParams
impl UnwindSafe for ListOwnedCollectionsParams
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