/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetDiscountResponse } from './getDiscountResponse'; import { GetIncrementResponse } from './getIncrementResponse'; import { GetPricingSchemeResponse } from './getPricingSchemeResponse'; import { GetSubscriptionResponse } from './getSubscriptionResponse'; export interface GetSubscriptionItemResponse { id?: string | null; description?: string | null; status?: string | null; createdAt?: string | null; updatedAt?: string | null; pricingScheme?: GetPricingSchemeResponse | null; discounts?: GetDiscountResponse[] | null; increments?: GetIncrementResponse[] | null; subscription?: GetSubscriptionResponse | null; /** Item name */ name?: string | null; quantity?: number | null; cycles?: number | null; deletedAt?: string | null; } export declare const getSubscriptionItemResponseSchema: Schema;