pub struct IssuingDisputeCanceledEvidence {
pub additional_documentation: Option<Expandable<File>>,
pub canceled_at: Option<Timestamp>,
pub cancellation_policy_provided: Option<bool>,
pub cancellation_reason: Option<String>,
pub expected_at: Option<Timestamp>,
pub explanation: Option<String>,
pub product_description: Option<String>,
pub product_type: Option<IssuingDisputeCanceledEvidenceProductType>,
pub return_status: Option<IssuingDisputeCanceledEvidenceReturnStatus>,
pub returned_at: Option<Timestamp>,
}
Fields§
§additional_documentation: Option<Expandable<File>>
(ID of a file upload) Additional documentation supporting the dispute.
canceled_at: Option<Timestamp>
Date when order was canceled.
cancellation_policy_provided: Option<bool>
Whether the cardholder was provided with a cancellation policy.
cancellation_reason: Option<String>
Reason for canceling the order.
expected_at: Option<Timestamp>
Date when the cardholder expected to receive the product.
explanation: Option<String>
Explanation of why the cardholder is disputing this transaction.
product_description: Option<String>
Description of the merchandise or service that was purchased.
product_type: Option<IssuingDisputeCanceledEvidenceProductType>
Whether the product was a merchandise or service.
return_status: Option<IssuingDisputeCanceledEvidenceReturnStatus>
Result of cardholder’s attempt to return the product.
returned_at: Option<Timestamp>
Date when the product was returned or attempted to be returned.
Trait Implementations§
Source§impl Clone for IssuingDisputeCanceledEvidence
impl Clone for IssuingDisputeCanceledEvidence
Source§fn clone(&self) -> IssuingDisputeCanceledEvidence
fn clone(&self) -> IssuingDisputeCanceledEvidence
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 FromValueOpt for IssuingDisputeCanceledEvidence
impl FromValueOpt for IssuingDisputeCanceledEvidence
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for IssuingDisputeCanceledEvidence
impl RefUnwindSafe for IssuingDisputeCanceledEvidence
impl Send for IssuingDisputeCanceledEvidence
impl Sync for IssuingDisputeCanceledEvidence
impl Unpin for IssuingDisputeCanceledEvidence
impl UnwindSafe for IssuingDisputeCanceledEvidence
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