"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.instanceOfV1UpdateWarehouseFBSRequestOptions = instanceOfV1UpdateWarehouseFBSRequestOptions; exports.V1UpdateWarehouseFBSRequestOptionsFromJSON = V1UpdateWarehouseFBSRequestOptionsFromJSON; exports.V1UpdateWarehouseFBSRequestOptionsFromJSONTyped = V1UpdateWarehouseFBSRequestOptionsFromJSONTyped; exports.V1UpdateWarehouseFBSRequestOptionsToJSON = V1UpdateWarehouseFBSRequestOptionsToJSON; /** * Check if a given object implements the V1UpdateWarehouseFBSRequestOptions interface. */ function instanceOfV1UpdateWarehouseFBSRequestOptions(value) { return true; } function V1UpdateWarehouseFBSRequestOptionsFromJSON(json) { return V1UpdateWarehouseFBSRequestOptionsFromJSONTyped(json, false); } function V1UpdateWarehouseFBSRequestOptionsFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'comment': json['comment'] == null ? undefined : json['comment'], 'courier_phones': json['courier_phones'] == null ? undefined : json['courier_phones'], 'is_auto_assembly': json['is_auto_assembly'] == null ? undefined : json['is_auto_assembly'], 'is_waybill_enabled': json['is_waybill_enabled'] == null ? undefined : json['is_waybill_enabled'], }; } function V1UpdateWarehouseFBSRequestOptionsToJSON(value) { if (value == null) { return value; } return { 'comment': value['comment'], 'courier_phones': value['courier_phones'], 'is_auto_assembly': value['is_auto_assembly'], 'is_waybill_enabled': value['is_waybill_enabled'], }; }