"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.instanceOfCreateWarehouseFBSRequestOptions = instanceOfCreateWarehouseFBSRequestOptions; exports.CreateWarehouseFBSRequestOptionsFromJSON = CreateWarehouseFBSRequestOptionsFromJSON; exports.CreateWarehouseFBSRequestOptionsFromJSONTyped = CreateWarehouseFBSRequestOptionsFromJSONTyped; exports.CreateWarehouseFBSRequestOptionsToJSON = CreateWarehouseFBSRequestOptionsToJSON; /** * Check if a given object implements the CreateWarehouseFBSRequestOptions interface. */ function instanceOfCreateWarehouseFBSRequestOptions(value) { return true; } function CreateWarehouseFBSRequestOptionsFromJSON(json) { return CreateWarehouseFBSRequestOptionsFromJSONTyped(json, false); } function CreateWarehouseFBSRequestOptionsFromJSONTyped(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 CreateWarehouseFBSRequestOptionsToJSON(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'], }; }