# issuing\_transaction\_purchase\_details

From **Stripe API**.

- Type: `object`

## Properties

### `flight`

- Required: false
- Nullable: true

Information about the flight that was purchased with this transaction.

### `fuel`

- Required: false
- Nullable: true

Information about fuel that was purchased with this transaction.

### `lodging`

- Required: false
- Nullable: true

Information about lodging that was purchased with this transaction.

### `receipt`

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

The line items in the purchase.

### `reference`

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

A merchant-specific order number.

## JSON Schema

```json
{"properties":{"flight":{"anyOf":[{"$ref":"#/components/schemas/issuing_transaction_flight_data"}],"description":"Information about the flight that was purchased with this transaction.","nullable":true},"fuel":{"anyOf":[{"$ref":"#/components/schemas/issuing_transaction_fuel_data"}],"description":"Information about fuel that was purchased with this transaction.","nullable":true},"lodging":{"anyOf":[{"$ref":"#/components/schemas/issuing_transaction_lodging_data"}],"description":"Information about lodging that was purchased with this transaction.","nullable":true},"receipt":{"description":"The line items in the purchase.","items":{"$ref":"#/components/schemas/issuing_transaction_receipt_data"},"nullable":true,"type":"array"},"reference":{"description":"A merchant-specific order number.","maxLength":5000,"nullable":true,"type":"string"}},"title":"IssuingTransactionPurchaseDetails","type":"object","x-expandableFields":["flight","fuel","lodging","receipt"]}
```
