/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { UpdatePricingSchemeRequest } from './updatePricingSchemeRequest'; /** Request for updating a plan item */ export interface UpdatePlanItemRequest { /** Item name */ name: string; /** Description */ description: string; /** Item status */ status: string; /** Pricing scheme */ pricingScheme: UpdatePricingSchemeRequest; /** Quantity */ quantity?: number; /** Number of cycles that the item will be charged */ cycles?: number; } export declare const updatePlanItemRequestSchema: Schema;