/** * Документация Ozon Seller API * По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. > [Инструкции по работе с маркетплейсом](https://seller-edu.ozon.ru) > [Информационная платформа и сообщество разработчиков Ozon for dev](https://dev.ozon.ru/) * * The version of the OpenAPI document: 2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Тип скидки: * - `UNSPECIFIED` — не определён; * - `RUB` — скидка в рублях; * - `PERCENT` — скидка в процентах; * - `FINAL_PRICE` — финальная цена; * - `INSTALLED_PERIOD` — период рассрочки; * - `CURRENCY` — скидка в валюте. * * @export */ export declare const ActionParameterDiscountTypeEnum: { readonly UNSPECIFIED: "UNSPECIFIED"; readonly RUB: "RUB"; readonly PERCENT: "PERCENT"; readonly FINAL_PRICE: "FINAL_PRICE"; readonly INSTALLED_PERIOD: "INSTALLED_PERIOD"; readonly CURRENCY: "CURRENCY"; }; export type ActionParameterDiscountTypeEnum = typeof ActionParameterDiscountTypeEnum[keyof typeof ActionParameterDiscountTypeEnum]; export declare function instanceOfActionParameterDiscountTypeEnum(value: any): boolean; export declare function ActionParameterDiscountTypeEnumFromJSON(json: any): ActionParameterDiscountTypeEnum; export declare function ActionParameterDiscountTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionParameterDiscountTypeEnum; export declare function ActionParameterDiscountTypeEnumToJSON(value?: ActionParameterDiscountTypeEnum | null): any;