/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Request for creating a new discount */ export interface CreateDiscountRequest { /** The discount value */ value: number; /** Discount type. Can be either flat or percentage. */ discountType: string; /** The item where the discount will be applied */ itemId: string; /** Number of cycles that the discount will be applied */ cycles?: number; /** Description */ description?: string; } export declare const createDiscountRequestSchema: Schema;