/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Money } from './money.js'; /** The breakdown details for the amount. Includes the gross, tax, fee, and shipping amounts. */ export interface SubscriptionAmountWithBreakdown { /** The currency and amount for a financial transaction, such as a balance or payment due. */ grossAmount: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ totalItemAmount?: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ feeAmount?: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ shippingAmount?: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ taxAmount?: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ netAmount?: Money; } export declare const subscriptionAmountWithBreakdownSchema: Schema; //# sourceMappingURL=subscriptionAmountWithBreakdown.d.ts.map