133 lines
5.1 KiB
TypeScript
133 lines
5.1 KiB
TypeScript
/**
|
||
* Документация Ozon Seller API
|
||
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](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.
|
||
*/
|
||
/**
|
||
*
|
||
* @export
|
||
* @interface GetSellerActionsV1ResponseAction
|
||
*/
|
||
export interface GetSellerActionsV1ResponseAction {
|
||
/**
|
||
* Идентификатор акции.
|
||
* @type {number}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
id?: number;
|
||
/**
|
||
* Название акции.
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
title?: string;
|
||
/**
|
||
* Тип акции.
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
action_type?: string;
|
||
/**
|
||
* Описание акции.
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
description?: string;
|
||
/**
|
||
* Дата начала акции.
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
date_start?: string;
|
||
/**
|
||
* Дата окончания акции.
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
date_end?: string;
|
||
/**
|
||
* Дата и время автодобавления товаров в акцию.
|
||
* @type {Array<string>}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
auto_add_dates?: Array<string>;
|
||
/**
|
||
* Дата приостановки акции.
|
||
*
|
||
* Если поле заполнено, продавец не может повышать цены, изменять список товаров и уменьшать количество единиц товаров в акции.
|
||
*
|
||
* Продавец может понижать цены и увеличивать количество единиц товара в акции.
|
||
*
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
freeze_date?: string;
|
||
/**
|
||
* Количество товаров, доступных для акции.
|
||
* @type {number}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
potential_products_count?: number;
|
||
/**
|
||
* Количество товаров, которые участвуют в акции.
|
||
* @type {number}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
participating_products_count?: number;
|
||
/**
|
||
* Участвуете вы в этой акции или нет.
|
||
* @type {boolean}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
is_participating?: boolean;
|
||
/**
|
||
* Признак, что для участия в акции покупателям нужен промокод.
|
||
* @type {boolean}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
is_voucher_action?: boolean;
|
||
/**
|
||
* Количество заблокированных товаров.
|
||
* @type {number}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
banned_products_count?: number;
|
||
/**
|
||
* Признак, что акция с целевой аудиторией.
|
||
* @type {boolean}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
with_targeting?: boolean;
|
||
/**
|
||
* Сумма заказа.
|
||
* @type {number}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
order_amount?: number;
|
||
/**
|
||
* Тип скидки.
|
||
* @type {string}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
discount_type?: string;
|
||
/**
|
||
* Размер скидки.
|
||
* @type {number}
|
||
* @memberof GetSellerActionsV1ResponseAction
|
||
*/
|
||
discount_value?: number;
|
||
}
|
||
/**
|
||
* Check if a given object implements the GetSellerActionsV1ResponseAction interface.
|
||
*/
|
||
export declare function instanceOfGetSellerActionsV1ResponseAction(value: object): value is GetSellerActionsV1ResponseAction;
|
||
export declare function GetSellerActionsV1ResponseActionFromJSON(json: any): GetSellerActionsV1ResponseAction;
|
||
export declare function GetSellerActionsV1ResponseActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSellerActionsV1ResponseAction;
|
||
export declare function GetSellerActionsV1ResponseActionToJSON(value?: GetSellerActionsV1ResponseAction | null): any;
|