/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetSubscriptionItemResponse } from './getSubscriptionItemResponse'; import { GetSubscriptionResponse } from './getSubscriptionResponse'; /** Response object for getting a discount */ export interface GetDiscountResponse { id?: string | null; value?: number | null; discountType?: string | null; status?: string | null; createdAt?: string | null; cycles?: number | null; deletedAt?: string | null; description?: string | null; subscription?: GetSubscriptionResponse | null; /** The subscription item */ subscriptionItem?: GetSubscriptionItemResponse | null; } export declare const getDiscountResponseSchema: Schema;