pub struct UpdateTokensOwnershipStatusParams {
pub token_ownership_status_update_payload: Vec<TokenOwnershipStatusUpdatePayload>,
pub idempotency_key: Option<String>,
}
Expand description
struct for passing parameters to the method
[update_tokens_ownership_status
]
Fields§
§token_ownership_status_update_payload: Vec<TokenOwnershipStatusUpdatePayload>
§idempotency_key: Option<String>
A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Implementations§
Source§impl UpdateTokensOwnershipStatusParams
impl UpdateTokensOwnershipStatusParams
Sourcepub fn builder() -> UpdateTokensOwnershipStatusParamsBuilder
pub fn builder() -> UpdateTokensOwnershipStatusParamsBuilder
Create an instance of UpdateTokensOwnershipStatusParams
using the builder syntax
Trait Implementations§
Source§impl Clone for UpdateTokensOwnershipStatusParams
impl Clone for UpdateTokensOwnershipStatusParams
Source§fn clone(&self) -> UpdateTokensOwnershipStatusParams
fn clone(&self) -> UpdateTokensOwnershipStatusParams
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 UpdateTokensOwnershipStatusParams
impl RefUnwindSafe for UpdateTokensOwnershipStatusParams
impl Send for UpdateTokensOwnershipStatusParams
impl Sync for UpdateTokensOwnershipStatusParams
impl Unpin for UpdateTokensOwnershipStatusParams
impl UnwindSafe for UpdateTokensOwnershipStatusParams
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