/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { BillingPlan } from './billingPlan.js'; import { LinkDescription } from './linkDescription.js'; /** The list of plans with details. */ export interface PlanCollection { /** An array of plans. */ plans?: BillingPlan[]; /** The total number of items. */ totalItems?: number; /** The total number of pages. */ totalPages?: number; /** An array of request-related [HATEOAS links](/docs/api/reference/api-responses/#hateoas-links). */ links?: LinkDescription[]; } export declare const planCollectionSchema: Schema; //# sourceMappingURL=planCollection.d.ts.map