/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetPlanItemResponse } from './getPlanItemResponse'; /** Response object for getting a plan */ export interface GetPlanResponse { id?: string | null; name?: string | null; description?: string | null; url?: string | null; statementDescriptor?: string | null; interval?: string | null; intervalCount?: number | null; billingType?: string | null; paymentMethods?: string[] | null; installments?: number[] | null; status?: string | null; currency?: string | null; createdAt?: string | null; updatedAt?: string | null; items?: GetPlanItemResponse[] | null; billingDays?: number[] | null; shippable?: boolean | null; metadata?: Record | null; trialPeriodDays?: number | null; minimumPrice?: number | null; deletedAt?: string | null; } export declare const getPlanResponseSchema: Schema;