/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { BillingCycle } from './billingCycle.js'; import { OneTimeCharge } from './oneTimeCharge.js'; /** The merchant level Recurring Billing plan metadata for the Billing Agreement. */ export interface Plan { /** An array of billing cycles for trial billing and regular billing. A plan can have at most two trial cycles and only one regular cycle. */ billingCycles: BillingCycle[]; /** The one-time charge info at the time of checkout. */ oneTimeCharges: OneTimeCharge; /** Name of the recurring plan. */ name?: string; } export declare const planSchema: Schema; //# sourceMappingURL=plan.d.ts.map