# issuing\_dispute\_duplicate\_evidence

From **Stripe API**.

- Type: `object`

## Properties

### `additional_documentation`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.

### `card_statement`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Copy of the card statement showing that the product had already been paid for.

### `cash_receipt`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Copy of the receipt showing that the product had been paid for in cash.

### `check_image`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Image of the front and back of the check that was used to pay for the product.

### `explanation`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Explanation of why the cardholder is disputing this transaction.

### `original_transaction`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Transaction (e.g., ipi_...) that the disputed transaction is a duplicate of. Of the two or more transactions that are copies of each other, this is original undisputed one.

## JSON Schema

```json
{"properties":{"additional_documentation":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"card_statement":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Copy of the card statement showing that the product had already been paid for.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"cash_receipt":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Copy of the receipt showing that the product had been paid for in cash.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"check_image":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Image of the front and back of the check that was used to pay for the product.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"explanation":{"description":"Explanation of why the cardholder is disputing this transaction.","maxLength":5000,"nullable":true,"type":"string"},"original_transaction":{"description":"Transaction (e.g., ipi_...) that the disputed transaction is a duplicate of. Of the two or more transactions that are copies of each other, this is original undisputed one.","maxLength":5000,"nullable":true,"type":"string"}},"title":"IssuingDisputeDuplicateEvidence","type":"object","x-expandableFields":["additional_documentation","card_statement","cash_receipt","check_image"]}
```
