pub struct UpdateAssetUserMetadataParams {
pub id: String,
pub idempotency_key: Option<String>,
pub update_asset_user_metadata_request: Option<UpdateAssetUserMetadataRequest>,
}Expand description
struct for passing parameters to the method
BlockchainsAssetsApi::update_asset_user_metadata
Fields§
§id: StringThe ID or legacyId of the asset
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.
update_asset_user_metadata_request: Option<UpdateAssetUserMetadataRequest>Implementations§
Source§impl UpdateAssetUserMetadataParams
impl UpdateAssetUserMetadataParams
Sourcepub fn builder() -> UpdateAssetUserMetadataParamsBuilder
pub fn builder() -> UpdateAssetUserMetadataParamsBuilder
Create an instance of UpdateAssetUserMetadataParams using the builder syntax
Trait Implementations§
Source§impl Clone for UpdateAssetUserMetadataParams
impl Clone for UpdateAssetUserMetadataParams
Source§fn clone(&self) -> UpdateAssetUserMetadataParams
fn clone(&self) -> UpdateAssetUserMetadataParams
Returns a duplicate 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 UpdateAssetUserMetadataParams
impl RefUnwindSafe for UpdateAssetUserMetadataParams
impl Send for UpdateAssetUserMetadataParams
impl Sync for UpdateAssetUserMetadataParams
impl Unpin for UpdateAssetUserMetadataParams
impl UnwindSafe for UpdateAssetUserMetadataParams
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