pub struct CreateVaultTransferResponse {Show 19 fields
pub id: String,
pub wallet_id: String,
pub network: Network,
pub requester: Requester,
pub request_body: Value,
pub metadata: Value,
pub status: String,
pub reason: Option<String>,
pub tx_hash: Option<String>,
pub fee: Option<String>,
pub date_requested: String,
pub date_policy_resolved: Option<String>,
pub date_broadcasted: Option<String>,
pub date_confirmed: Option<String>,
pub approval_id: Option<String>,
pub external_id: Option<String>,
pub fee_sponsor_id: Option<String>,
pub replacement_id: Option<String>,
pub details: Option<HashMap<String, HashMap<String, Value>>>,
}Expand description
Create Vault Transfer
Fields§
§id: String§wallet_id: String§network: Network§requester: Requester§request_body: Value§metadata: Value§status: String§reason: Option<String>§tx_hash: Option<String>§fee: Option<String>§date_requested: String§date_policy_resolved: Option<String>§date_broadcasted: Option<String>§date_confirmed: Option<String>§approval_id: Option<String>§external_id: Option<String>§fee_sponsor_id: Option<String>§replacement_id: Option<String>§details: Option<HashMap<String, HashMap<String, Value>>>Trait Implementations§
Source§impl Clone for CreateVaultTransferResponse
impl Clone for CreateVaultTransferResponse
Source§fn clone(&self) -> CreateVaultTransferResponse
fn clone(&self) -> CreateVaultTransferResponse
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 Debug for CreateVaultTransferResponse
impl Debug for CreateVaultTransferResponse
Source§impl<'de> Deserialize<'de> for CreateVaultTransferResponse
impl<'de> Deserialize<'de> for CreateVaultTransferResponse
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 CreateVaultTransferResponse
impl RefUnwindSafe for CreateVaultTransferResponse
impl Send for CreateVaultTransferResponse
impl Sync for CreateVaultTransferResponse
impl Unpin for CreateVaultTransferResponse
impl UnsafeUnpin for CreateVaultTransferResponse
impl UnwindSafe for CreateVaultTransferResponse
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