pub struct VerifyThirdPartySignatureRequest {
pub check_expectation_action_uuid: Option<ConstructDid>,
pub signer_uuid: ConstructDid,
pub namespace: String,
pub network_id: String,
pub signer_name: String,
pub third_party_name: String,
pub url: String,
pub payload: Value,
pub formatted_payload: Option<Value>,
}Fields§
§check_expectation_action_uuid: Option<ConstructDid>§signer_uuid: ConstructDid§namespace: String§network_id: String§signer_name: String§third_party_name: String§url: String§payload: Value§formatted_payload: Option<Value>Implementations§
Source§impl VerifyThirdPartySignatureRequest
impl VerifyThirdPartySignatureRequest
pub fn new( signer_uuid: &Did, url: &str, signer_name: &str, third_party_name: &str, payload: &Value, namespace: &str, network_id: &str, ) -> Self
pub fn check_expectation_action_uuid( &mut self, uuid: &ConstructDid, ) -> &mut Self
pub fn formatted_payload( &mut self, display_payload: Option<&Value>, ) -> &mut Self
pub fn to_action_type(&self) -> ActionItemRequestType
Trait Implementations§
Source§impl Clone for VerifyThirdPartySignatureRequest
impl Clone for VerifyThirdPartySignatureRequest
Source§fn clone(&self) -> VerifyThirdPartySignatureRequest
fn clone(&self) -> VerifyThirdPartySignatureRequest
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 moreSource§impl<'de> Deserialize<'de> for VerifyThirdPartySignatureRequest
impl<'de> Deserialize<'de> for VerifyThirdPartySignatureRequest
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
Source§impl PartialEq for VerifyThirdPartySignatureRequest
impl PartialEq for VerifyThirdPartySignatureRequest
Source§fn eq(&self, other: &VerifyThirdPartySignatureRequest) -> bool
fn eq(&self, other: &VerifyThirdPartySignatureRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VerifyThirdPartySignatureRequest
Auto Trait Implementations§
impl Freeze for VerifyThirdPartySignatureRequest
impl RefUnwindSafe for VerifyThirdPartySignatureRequest
impl Send for VerifyThirdPartySignatureRequest
impl Sync for VerifyThirdPartySignatureRequest
impl Unpin for VerifyThirdPartySignatureRequest
impl UnwindSafe for VerifyThirdPartySignatureRequest
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