pub struct GenerateSignatureResponse {Show 19 fields
pub id: String,
pub key_id: String,
pub requester: Requester,
pub request_body: Value,
pub status: String,
pub reason: Option<String>,
pub signature: Option<Value>,
pub signatures: Option<Vec<Value>>,
pub signed_data: Option<String>,
pub network: Option<Network>,
pub tx_hash: Option<String>,
pub fee: Option<String>,
pub approval_id: Option<String>,
pub date_requested: String,
pub date_policy_resolved: Option<String>,
pub date_signed: Option<String>,
pub date_confirmed: Option<String>,
pub external_id: Option<String>,
pub details: Option<HashMap<String, HashMap<String, Value>>>,
}Expand description
Generate Signature
Fields§
§id: String§key_id: String§requester: Requester§request_body: Value§status: String§reason: Option<String>§signature: Option<Value>§signatures: Option<Vec<Value>>§signed_data: Option<String>§network: Option<Network>§tx_hash: Option<String>§fee: Option<String>§approval_id: Option<String>§date_requested: String§date_policy_resolved: Option<String>§date_signed: Option<String>§date_confirmed: Option<String>§external_id: Option<String>§details: Option<HashMap<String, HashMap<String, Value>>>Trait Implementations§
Source§impl Clone for GenerateSignatureResponse
impl Clone for GenerateSignatureResponse
Source§fn clone(&self) -> GenerateSignatureResponse
fn clone(&self) -> GenerateSignatureResponse
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 GenerateSignatureResponse
impl Debug for GenerateSignatureResponse
Source§impl<'de> Deserialize<'de> for GenerateSignatureResponse
impl<'de> Deserialize<'de> for GenerateSignatureResponse
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 GenerateSignatureResponse
impl RefUnwindSafe for GenerateSignatureResponse
impl Send for GenerateSignatureResponse
impl Sync for GenerateSignatureResponse
impl Unpin for GenerateSignatureResponse
impl UnsafeUnpin for GenerateSignatureResponse
impl UnwindSafe for GenerateSignatureResponse
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