AuthorizationPurchaseDetails constructor

const AuthorizationPurchaseDetails({
  1. AuthorizationFlight? flight,
  2. AuthorizationFuel? fuel,
  3. AuthorizationLodging? lodging,
  4. List<AuthorizationReceiptItem>? receipt,
  5. String? reference,
})

purchase_details_specs

Additional purchase information that is optionally provided by the merchant.

Implementation

const AuthorizationPurchaseDetails({
  this.flight,
  this.fuel,
  this.lodging,
  this.receipt,
  this.reference,
});