/** * Документация 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. */ import type { V1SellerActionsUpdateDiscountWithConditionRequestActionParameters } from './V1SellerActionsUpdateDiscountWithConditionRequestActionParameters'; /** * * @export * @interface V1SellerActionsUpdateDiscountWithConditionRequest */ export interface V1SellerActionsUpdateDiscountWithConditionRequest { /** * Идентификатор акции. Получите значение параметра методом [/v1/seller-actions/list](#operation/SellerActionsList). * @type {number} * @memberof V1SellerActionsUpdateDiscountWithConditionRequest */ action_id?: number; /** * * @type {V1SellerActionsUpdateDiscountWithConditionRequestActionParameters} * @memberof V1SellerActionsUpdateDiscountWithConditionRequest */ action_parameters?: V1SellerActionsUpdateDiscountWithConditionRequestActionParameters; } /** * Check if a given object implements the V1SellerActionsUpdateDiscountWithConditionRequest interface. */ export declare function instanceOfV1SellerActionsUpdateDiscountWithConditionRequest(value: object): value is V1SellerActionsUpdateDiscountWithConditionRequest; export declare function V1SellerActionsUpdateDiscountWithConditionRequestFromJSON(json: any): V1SellerActionsUpdateDiscountWithConditionRequest; export declare function V1SellerActionsUpdateDiscountWithConditionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1SellerActionsUpdateDiscountWithConditionRequest; export declare function V1SellerActionsUpdateDiscountWithConditionRequestToJSON(value?: V1SellerActionsUpdateDiscountWithConditionRequest | null): any;