/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { DisbursementMode } from './disbursementMode.js'; import { PlatformFee } from './platformFee.js'; /** Any additional payment instructions to be consider during payment processing. This processing instruction is applicable for Capturing an order or Authorizing an Order. */ export interface CapturePaymentInstruction { /** An array of platform or partner fees, commissions, or brokerage fees that associated with the captured payment. */ platformFees?: PlatformFee[]; /** The funds that are held on behalf of the merchant. */ disbursementMode?: DisbursementMode; /** FX identifier generated returned by PayPal to be used for payment processing in order to honor FX rate (for eligible integrations) to be used when amount is settled/received into the payee account. */ payeeReceivableFxRateId?: string; } export declare const capturePaymentInstructionSchema: Schema; //# sourceMappingURL=capturePaymentInstruction.d.ts.map