IssuingTransactionPurchaseDetailsFlight constructor

const IssuingTransactionPurchaseDetailsFlight({
  1. int? departureAt,
  2. String? passengerName,
  3. bool? refundable,
  4. List<IssuingTransactionFlightDataLeg>? segments,
  5. String? travelAgency,
})

Information about the flight that was purchased with this transaction.

Implementation

const IssuingTransactionPurchaseDetailsFlight({
  this.departureAt,
  this.passengerName,
  this.refundable,
  this.segments,
  this.travelAgency,
});