UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

31 lines 979 B
import { PaymentAcceptanceInsuranceDetails } from './paymentAcceptanceInsuranceDetails'; export interface PaymentAcceptanceFlight { arrival_airport_code: string; arrival_city: string; arrival_country: string; class_of_service?: string; departure_airport_code: string; departure_city: string; departure_country: string; flight_number: string; insurances?: Array<PaymentAcceptanceInsuranceDetails>; passenger_email?: string; passenger_name: string; passenger_nationality: string; passenger_phone?: string; pre_tax_amount?: number; scheduled_arrival_at: string; scheduled_departure_at: string; seat_number?: string; tax_amount?: number; type: string; } export declare namespace PaymentAcceptanceFlight { const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=paymentAcceptanceFlight.d.ts.map