/** * 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'; import { PricingModel } from './pricingModel.js'; /** The pricing scheme details. */ export interface PricingScheme { /** The currency and amount for a financial transaction, such as a balance or payment due. */ price?: Money; /** The pricing model for the billing cycle. */ pricingModel: PricingModel; /** The currency and amount for a financial transaction, such as a balance or payment due. */ reloadThresholdAmount?: Money; } export declare const pricingSchemeSchema: Schema; //# sourceMappingURL=pricingScheme.d.ts.map