Struct stripe::IssuingDisputeCanceledEvidence[][src]

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

impl Clone for IssuingDisputeCanceledEvidence[src]

impl Debug for IssuingDisputeCanceledEvidence[src]

impl<'de> Deserialize<'de> for IssuingDisputeCanceledEvidence[src]

impl Serialize for IssuingDisputeCanceledEvidence[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]