/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetPlanResponse } from './getPlanResponse'; import { GetPricingSchemeResponse } from './getPricingSchemeResponse'; /** Response object for getting a plan item */ export interface GetPlanItemResponse { id?: string | null; name?: string | null; status?: string | null; createdAt?: string | null; updatedAt?: string | null; pricingScheme?: GetPricingSchemeResponse | null; description?: string | null; plan?: GetPlanResponse | null; quantity?: number | null; cycles?: number | null; deletedAt?: string | null; } export declare const getPlanItemResponseSchema: Schema;