Files
2026-08-21 12:19:50 +00:00

58 lines
2.6 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use strict";
/* tslint:disable */
/* eslint-disable */
/**
* Документация 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.instanceOfSplitItem = instanceOfSplitItem;
exports.SplitItemFromJSON = SplitItemFromJSON;
exports.SplitItemFromJSONTyped = SplitItemFromJSONTyped;
exports.SplitItemToJSON = SplitItemToJSON;
const OrderCreateRequestPrice_1 = require("./OrderCreateRequestPrice");
/**
* Check if a given object implements the SplitItem interface.
*/
function instanceOfSplitItem(value) {
if (!('price' in value) || value['price'] === undefined)
return false;
if (!('quantity' in value) || value['quantity'] === undefined)
return false;
if (!('sku' in value) || value['sku'] === undefined)
return false;
return true;
}
function SplitItemFromJSON(json) {
return SplitItemFromJSONTyped(json, false);
}
function SplitItemFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'offer_id': json['offer_id'] == null ? undefined : json['offer_id'],
'price': (0, OrderCreateRequestPrice_1.OrderCreateRequestPriceFromJSON)(json['price']),
'quantity': json['quantity'],
'sku': json['sku'],
};
}
function SplitItemToJSON(value) {
if (value == null) {
return value;
}
return {
'offer_id': value['offer_id'],
'price': (0, OrderCreateRequestPrice_1.OrderCreateRequestPriceToJSON)(value['price']),
'quantity': value['quantity'],
'sku': value['sku'],
};
}