"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Документация 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfPostingv3PostingMultiBoxQtySetV3Response = instanceOfPostingv3PostingMultiBoxQtySetV3Response; exports.Postingv3PostingMultiBoxQtySetV3ResponseFromJSON = Postingv3PostingMultiBoxQtySetV3ResponseFromJSON; exports.Postingv3PostingMultiBoxQtySetV3ResponseFromJSONTyped = Postingv3PostingMultiBoxQtySetV3ResponseFromJSONTyped; exports.Postingv3PostingMultiBoxQtySetV3ResponseToJSON = Postingv3PostingMultiBoxQtySetV3ResponseToJSON; const Postingv3PostingMultiBoxQtySetV3ResponseResult_1 = require("./Postingv3PostingMultiBoxQtySetV3ResponseResult"); /** * Check if a given object implements the Postingv3PostingMultiBoxQtySetV3Response interface. */ function instanceOfPostingv3PostingMultiBoxQtySetV3Response(value) { return true; } function Postingv3PostingMultiBoxQtySetV3ResponseFromJSON(json) { return Postingv3PostingMultiBoxQtySetV3ResponseFromJSONTyped(json, false); } function Postingv3PostingMultiBoxQtySetV3ResponseFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'result': json['result'] == null ? undefined : (0, Postingv3PostingMultiBoxQtySetV3ResponseResult_1.Postingv3PostingMultiBoxQtySetV3ResponseResultFromJSON)(json['result']), }; } function Postingv3PostingMultiBoxQtySetV3ResponseToJSON(value) { if (value == null) { return value; } return { 'result': (0, Postingv3PostingMultiBoxQtySetV3ResponseResult_1.Postingv3PostingMultiBoxQtySetV3ResponseResultToJSON)(value['result']), }; }