/** * 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 pricing tier details. */ export interface PricingTier { /** The starting quantity for the tier. */ startingQuantity: string; /** The ending quantity for the tier. Optional for the last tier. */ endingQuantity?: string; /** The currency and amount for a financial transaction, such as a balance or payment due. */ amount: Money; } export declare const pricingTierSchema: Schema; //# sourceMappingURL=pricingTier.d.ts.map