# issuing\_transaction\_flight\_data

From **Stripe API**.

- Type: `object`

## Properties

### `departure_at`

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

The time that the flight departed.

### `passenger_name`

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

The name of the passenger.

### `refundable`

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

Whether the ticket is refundable.

### `segments`

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

The legs of the trip.

### `travel_agency`

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

The travel agency that issued the ticket.

## JSON Schema

```json
{"properties":{"departure_at":{"description":"The time that the flight departed.","nullable":true,"type":"integer"},"passenger_name":{"description":"The name of the passenger.","maxLength":5000,"nullable":true,"type":"string"},"refundable":{"description":"Whether the ticket is refundable.","nullable":true,"type":"boolean"},"segments":{"description":"The legs of the trip.","items":{"$ref":"#/components/schemas/issuing_transaction_flight_data_leg"},"nullable":true,"type":"array"},"travel_agency":{"description":"The travel agency that issued the ticket.","maxLength":5000,"nullable":true,"type":"string"}},"title":"IssuingTransactionFlightData","type":"object","x-expandableFields":["segments"]}
```
