# issuing\_transaction\_receipt\_data

From **Stripe API**.

- Type: `object`

## Properties

### `description`

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

The description of the item. The maximum length of this field is 26 characters.

### `quantity`

- Required: false
- Type: `number`
- Nullable: true

The quantity of the item.

### `total`

- Required: false
- Type: `integer`
- Nullable: true

The total for this line item in cents.

### `unit_cost`

- Required: false
- Type: `integer`
- Nullable: true

The unit cost of the item in cents.

## JSON Schema

```json
{"properties":{"description":{"description":"The description of the item. The maximum length of this field is 26 characters.","maxLength":5000,"nullable":true,"type":"string"},"quantity":{"description":"The quantity of the item.","nullable":true,"type":"number"},"total":{"description":"The total for this line item in cents.","nullable":true,"type":"integer"},"unit_cost":{"description":"The unit cost of the item in cents.","nullable":true,"type":"integer"}},"title":"IssuingTransactionReceiptData","type":"object","x-expandableFields":[]}
```
