pub struct LiabilityClaimDisputeArtifact {
pub schema: String,
pub dispute_id: String,
pub issued_at: u64,
pub provider_response: SignedExportEnvelope<LiabilityClaimResponseArtifact>,
pub opened_by: String,
pub reason: String,
pub note: Option<String>,
pub evidence_refs: Vec<LiabilityClaimEvidenceReference>,
}Fields§
§schema: String§dispute_id: String§issued_at: u64§provider_response: SignedExportEnvelope<LiabilityClaimResponseArtifact>§opened_by: String§reason: String§note: Option<String>§evidence_refs: Vec<LiabilityClaimEvidenceReference>Implementations§
Trait Implementations§
Source§impl Clone for LiabilityClaimDisputeArtifact
impl Clone for LiabilityClaimDisputeArtifact
Source§fn clone(&self) -> LiabilityClaimDisputeArtifact
fn clone(&self) -> LiabilityClaimDisputeArtifact
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 LiabilityClaimDisputeArtifact
impl<'de> Deserialize<'de> for LiabilityClaimDisputeArtifact
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LiabilityClaimDisputeArtifact, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LiabilityClaimDisputeArtifact, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LiabilityClaimDisputeArtifact
impl PartialEq for LiabilityClaimDisputeArtifact
Source§fn eq(&self, other: &LiabilityClaimDisputeArtifact) -> bool
fn eq(&self, other: &LiabilityClaimDisputeArtifact) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LiabilityClaimDisputeArtifact
impl Serialize for LiabilityClaimDisputeArtifact
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LiabilityClaimDisputeArtifact
Auto Trait Implementations§
impl Freeze for LiabilityClaimDisputeArtifact
impl RefUnwindSafe for LiabilityClaimDisputeArtifact
impl Send for LiabilityClaimDisputeArtifact
impl Sync for LiabilityClaimDisputeArtifact
impl Unpin for LiabilityClaimDisputeArtifact
impl UnsafeUnpin for LiabilityClaimDisputeArtifact
impl UnwindSafe for LiabilityClaimDisputeArtifact
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