pub struct StudioCreateDBCTransactionResponse {
pub image_presigned_url: Url,
pub image_url: Url,
pub metadata_presigned_url: Url,
pub mint: String,
pub transaction: String,
}Fields§
§image_presigned_url: Url- Presigned URL for image upload via
PUTrequest- This is for you to make a PUT request to upload your token image to the on-chain uri metadata
- Refer to the Token Metadata section for better understanding
image_url: UrlFinal image URL
metadata_presigned_url: Url- Presigned URL for metadata upload via
PUTrequest- This is for you to make a PUT request to upload your token metadata to the on-chain uri metadata
- Refer to the Token Metadata section for better understanding
mint: StringGenerated token mint address
transaction: StringBase64-encoded transaction ready for signing
Trait Implementations§
Source§impl Clone for StudioCreateDBCTransactionResponse
impl Clone for StudioCreateDBCTransactionResponse
Source§fn clone(&self) -> StudioCreateDBCTransactionResponse
fn clone(&self) -> StudioCreateDBCTransactionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for StudioCreateDBCTransactionResponse
impl<'de> Deserialize<'de> for StudioCreateDBCTransactionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StudioCreateDBCTransactionResponse
impl RefUnwindSafe for StudioCreateDBCTransactionResponse
impl Send for StudioCreateDBCTransactionResponse
impl Sync for StudioCreateDBCTransactionResponse
impl Unpin for StudioCreateDBCTransactionResponse
impl UnsafeUnpin for StudioCreateDBCTransactionResponse
impl UnwindSafe for StudioCreateDBCTransactionResponse
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