[][src]Struct stripe::DisputeEvidence

pub struct DisputeEvidence {
    pub access_activity_log: Option<String>,
    pub billing_address: Option<String>,
    pub cancellation_policy: Option<Expandable<File>>,
    pub cancellation_policy_disclosure: Option<String>,
    pub cancellation_rebuttal: Option<String>,
    pub customer_communication: Option<Expandable<File>>,
    pub customer_email_address: Option<String>,
    pub customer_name: Option<String>,
    pub customer_purchase_ip: Option<String>,
    pub customer_signature: Option<Expandable<File>>,
    pub duplicate_charge_documentation: Option<Expandable<File>>,
    pub duplicate_charge_explanation: Option<String>,
    pub duplicate_charge_id: Option<String>,
    pub product_description: Option<String>,
    pub receipt: Option<Expandable<File>>,
    pub refund_policy: Option<Expandable<File>>,
    pub refund_policy_disclosure: Option<String>,
    pub refund_refusal_explanation: Option<String>,
    pub service_date: Option<String>,
    pub service_documentation: Option<Expandable<File>>,
    pub shipping_address: Option<String>,
    pub shipping_carrier: Option<String>,
    pub shipping_date: Option<String>,
    pub shipping_documentation: Option<Expandable<File>>,
    pub shipping_tracking_number: Option<String>,
    pub uncategorized_file: Option<Expandable<File>>,
    pub uncategorized_text: Option<String>,
}

Fields

access_activity_log: Option<String>

Any server or activity logs showing proof that the customer accessed or downloaded the purchased digital product.

This information should include IP addresses, corresponding timestamps, and any detailed recorded activity.

billing_address: Option<String>

The billing address provided by the customer.

cancellation_policy: Option<Expandable<File>>

(ID of a file upload) Your subscription cancellation policy, as shown to the customer.

cancellation_policy_disclosure: Option<String>

An explanation of how and when the customer was shown your refund policy prior to purchase.

cancellation_rebuttal: Option<String>

A justification for why the customer's subscription was not canceled.

customer_communication: Option<Expandable<File>>

(ID of a file upload) Any communication with the customer that you feel is relevant to your case.

Examples include emails proving that the customer received the product or service, or demonstrating their use of or satisfaction with the product or service.

customer_email_address: Option<String>

The email address of the customer.

customer_name: Option<String>

The name of the customer.

customer_purchase_ip: Option<String>

The IP address that the customer used when making the purchase.

customer_signature: Option<Expandable<File>>

(ID of a file upload) A relevant document or contract showing the customer's signature.

duplicate_charge_documentation: Option<Expandable<File>>

(ID of a file upload) Documentation for the prior charge that can uniquely identify the charge, such as a receipt, shipping label, work order, etc.

This document should be paired with a similar document from the disputed payment that proves the two payments are separate.

duplicate_charge_explanation: Option<String>

An explanation of the difference between the disputed charge versus the prior charge that appears to be a duplicate.

duplicate_charge_id: Option<String>

The Stripe ID for the prior charge which appears to be a duplicate of the disputed charge.

product_description: Option<String>

A description of the product or service that was sold.

receipt: Option<Expandable<File>>

(ID of a file upload) Any receipt or message sent to the customer notifying them of the charge.

refund_policy: Option<Expandable<File>>

(ID of a file upload) Your refund policy, as shown to the customer.

refund_policy_disclosure: Option<String>

Documentation demonstrating that the customer was shown your refund policy prior to purchase.

refund_refusal_explanation: Option<String>

A justification for why the customer is not entitled to a refund.

service_date: Option<String>

The date on which the customer received or began receiving the purchased service, in a clear human-readable format.

service_documentation: Option<Expandable<File>>

(ID of a file upload) Documentation showing proof that a service was provided to the customer.

This could include a copy of a signed contract, work order, or other form of written agreement.

shipping_address: Option<String>

The address to which a physical product was shipped.

You should try to include as complete address information as possible.

shipping_carrier: Option<String>

The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.

If multiple carriers were used for this purchase, please separate them with commas.

shipping_date: Option<String>

The date on which a physical product began its route to the shipping address, in a clear human-readable format.

shipping_documentation: Option<Expandable<File>>

(ID of a file upload) Documentation showing proof that a product was shipped to the customer at the same address the customer provided to you.

This could include a copy of the shipment receipt, shipping label, etc. It should show the customer's full shipping address, if possible.

shipping_tracking_number: Option<String>

The tracking number for a physical product, obtained from the delivery service.

If multiple tracking numbers were generated for this purchase, please separate them with commas.

uncategorized_file: Option<Expandable<File>>

(ID of a file upload) Any additional evidence or statements.

uncategorized_text: Option<String>

Any additional evidence or statements.

Trait Implementations

impl Clone for DisputeEvidence[src]

impl Debug for DisputeEvidence[src]

impl Serialize for DisputeEvidence[src]

impl<'de> Deserialize<'de> for DisputeEvidence[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