release 0.1.0
This commit is contained in:
96
dist/models/ItemPricev5.d.ts
vendored
Normal file
96
dist/models/ItemPricev5.d.ts
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
/**
|
||||
* Документация 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 ItemPricev5
|
||||
*/
|
||||
export interface ItemPricev5 {
|
||||
/**
|
||||
* `true`, если автоприменение акций у товара включено.
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
auto_action_enabled?: boolean;
|
||||
/**
|
||||
* `true`, если автодобавление товара в акции включено.
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
auto_add_to_ozon_actions_list_enabled?: boolean;
|
||||
/**
|
||||
* Валюта ваших цен. Совпадает с валютой, которая установлена в настройках личного кабинета.
|
||||
*
|
||||
* Возможные значения:
|
||||
* - `RUB` — российский рубль,
|
||||
* - `BYN` — белорусский рубль,
|
||||
* - `KZT` — тенге,
|
||||
* - `EUR` — евро,
|
||||
* - `USD` — доллар США,
|
||||
* - `CNY` — юань.
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
currency_code?: string;
|
||||
/**
|
||||
* Цена на товар с учётом акций продавца.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
marketing_seller_price?: number;
|
||||
/**
|
||||
* Минимальная цена товара после применения всех скидок.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
min_price?: number;
|
||||
/**
|
||||
* Себестоимость товара.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
net_price?: number;
|
||||
/**
|
||||
* Цена до учёта скидок. На карточке товара отображается зачёркнутой.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
old_price?: number;
|
||||
/**
|
||||
* Цена товара с учётом скидок — это значение показывается на карточке товара.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
price?: number;
|
||||
/**
|
||||
* Цена поставщика по договору. Поле вернётся пустым, если нет договора на поставку.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
retail_price?: number;
|
||||
/**
|
||||
* Ставка НДС для товара.
|
||||
* @type {number}
|
||||
* @memberof ItemPricev5
|
||||
*/
|
||||
vat?: number;
|
||||
}
|
||||
/**
|
||||
* Check if a given object implements the ItemPricev5 interface.
|
||||
*/
|
||||
export declare function instanceOfItemPricev5(value: object): value is ItemPricev5;
|
||||
export declare function ItemPricev5FromJSON(json: any): ItemPricev5;
|
||||
export declare function ItemPricev5FromJSONTyped(json: any, ignoreDiscriminator: boolean): ItemPricev5;
|
||||
export declare function ItemPricev5ToJSON(value?: ItemPricev5 | null): any;
|
||||
Reference in New Issue
Block a user