/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ExchangeRate } from './exchangeRate.js'; import { Money } from './money.js'; /** The net amount. Returned when the currency of the refund is different from the currency of the PayPal account where the merchant holds their funds. */ export interface NetAmountBreakdownItem { /** The currency and amount for a financial transaction, such as a balance or payment due. */ payableAmount?: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ convertedAmount?: Money; /** The exchange rate that determines the amount to convert from one currency to another currency. */ exchangeRate?: ExchangeRate; } export declare const netAmountBreakdownItemSchema: Schema; //# sourceMappingURL=netAmountBreakdownItem.d.ts.map