/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { OrderConfirmApplicationContext } from './orderConfirmApplicationContext.js'; import { PaymentSource } from './paymentSource.js'; /** Payer confirms the intent to pay for the Order using the provided payment source. */ export interface ConfirmOrderRequest { /** The payment source definition. */ paymentSource: PaymentSource; /** Customizes the payer confirmation experience. */ applicationContext?: OrderConfirmApplicationContext; } export declare const confirmOrderRequestSchema: Schema; //# sourceMappingURL=confirmOrderRequest.d.ts.map