Struct stripe::IssuingDispute[][src]

pub struct IssuingDispute {
    pub id: IssuingDisputeId,
    pub amount: i64,
    pub balance_transactions: Option<Vec<BalanceTransaction>>,
    pub created: Timestamp,
    pub currency: Currency,
    pub evidence: IssuingDisputeEvidence,
    pub livemode: bool,
    pub metadata: Metadata,
    pub status: IssuingDisputeStatus,
    pub transaction: Expandable<IssuingTransaction>,
}

The resource representing a Stripe "IssuingDispute".

Fields

id: IssuingDisputeId

Unique identifier for the object.

amount: i64

Disputed amount.

Usually the amount of the disputed_transaction, but can differ (usually because of currency fluctuation).

balance_transactions: Option<Vec<BalanceTransaction>>

List of balance transactions associated with the dispute.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

currency: Currency

The currency the disputed_transaction was made in.

evidence: IssuingDisputeEvidencelivemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

metadata: Metadata

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

status: IssuingDisputeStatus

Current status of the dispute.

transaction: Expandable<IssuingTransaction>

The transaction being disputed.

Trait Implementations

impl Clone for IssuingDispute[src]

impl Debug for IssuingDispute[src]

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

impl Object for IssuingDispute[src]

type Id = IssuingDisputeId

The canonical id type for this object.

impl Serialize for IssuingDispute[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]