[][src]Struct stripe::DisputeEvidenceDetails

pub struct DisputeEvidenceDetails {
    pub due_by: Option<Timestamp>,
    pub has_evidence: bool,
    pub past_due: bool,
    pub submission_count: u64,
}

Fields

due_by: Option<Timestamp>

Date by which evidence must be submitted in order to successfully challenge dispute.

Will be null if the customer's bank or credit card company doesn't allow a response for this particular dispute.

has_evidence: bool

Whether evidence has been staged for this dispute.

past_due: bool

Whether the last evidence submission was submitted past the due date.

Defaults to false if no evidence submissions have occurred. If true, then delivery of the latest evidence is not guaranteed.

submission_count: u64

The number of times evidence has been submitted.

Typically, you may only submit evidence once.

Trait Implementations

impl Clone for DisputeEvidenceDetails[src]

impl Debug for DisputeEvidenceDetails[src]

impl Serialize for DisputeEvidenceDetails[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self