pub struct LiabilityClaimWorkflowRow {
pub claim: SignedExportEnvelope<LiabilityClaimPackageArtifact>,
pub provider_response: Option<SignedExportEnvelope<LiabilityClaimResponseArtifact>>,
pub dispute: Option<SignedExportEnvelope<LiabilityClaimDisputeArtifact>>,
pub adjudication: Option<SignedExportEnvelope<LiabilityClaimAdjudicationArtifact>>,
pub payout_instruction: Option<SignedExportEnvelope<LiabilityClaimPayoutInstructionArtifact>>,
pub payout_receipt: Option<SignedExportEnvelope<LiabilityClaimPayoutReceiptArtifact>>,
pub settlement_instruction: Option<SignedExportEnvelope<LiabilityClaimSettlementInstructionArtifact>>,
pub settlement_receipt: Option<SignedExportEnvelope<LiabilityClaimSettlementReceiptArtifact>>,
}Fields§
§claim: SignedExportEnvelope<LiabilityClaimPackageArtifact>§provider_response: Option<SignedExportEnvelope<LiabilityClaimResponseArtifact>>§dispute: Option<SignedExportEnvelope<LiabilityClaimDisputeArtifact>>§adjudication: Option<SignedExportEnvelope<LiabilityClaimAdjudicationArtifact>>§payout_instruction: Option<SignedExportEnvelope<LiabilityClaimPayoutInstructionArtifact>>§payout_receipt: Option<SignedExportEnvelope<LiabilityClaimPayoutReceiptArtifact>>§settlement_instruction: Option<SignedExportEnvelope<LiabilityClaimSettlementInstructionArtifact>>§settlement_receipt: Option<SignedExportEnvelope<LiabilityClaimSettlementReceiptArtifact>>Trait Implementations§
Source§impl Clone for LiabilityClaimWorkflowRow
impl Clone for LiabilityClaimWorkflowRow
Source§fn clone(&self) -> LiabilityClaimWorkflowRow
fn clone(&self) -> LiabilityClaimWorkflowRow
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 Debug for LiabilityClaimWorkflowRow
impl Debug for LiabilityClaimWorkflowRow
Source§impl<'de> Deserialize<'de> for LiabilityClaimWorkflowRow
impl<'de> Deserialize<'de> for LiabilityClaimWorkflowRow
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LiabilityClaimWorkflowRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LiabilityClaimWorkflowRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for LiabilityClaimWorkflowRow
impl Serialize for LiabilityClaimWorkflowRow
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 LiabilityClaimWorkflowRow
Auto Trait Implementations§
impl Freeze for LiabilityClaimWorkflowRow
impl RefUnwindSafe for LiabilityClaimWorkflowRow
impl Send for LiabilityClaimWorkflowRow
impl Sync for LiabilityClaimWorkflowRow
impl Unpin for LiabilityClaimWorkflowRow
impl UnsafeUnpin for LiabilityClaimWorkflowRow
impl UnwindSafe for LiabilityClaimWorkflowRow
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