"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.V2DeliveryCheckoutRequestV2DeliverySchemaEnum = void 0; exports.instanceOfV2DeliveryCheckoutRequestV2DeliverySchemaEnum = instanceOfV2DeliveryCheckoutRequestV2DeliverySchemaEnum; exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSON = V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSON; exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSONTyped = V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSONTyped; exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnumToJSON = V2DeliveryCheckoutRequestV2DeliverySchemaEnumToJSON; /** * Схема доставки: * - `MIX` — на выбор Ozon; * - `FBO` — FBO; * - `FBS` — FBS. * * @export */ exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnum = { MIX: 'MIX', FBO: 'FBO', FBS: 'FBS' }; function instanceOfV2DeliveryCheckoutRequestV2DeliverySchemaEnum(value) { for (const key in exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnum) { if (Object.prototype.hasOwnProperty.call(exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnum, key)) { if (exports.V2DeliveryCheckoutRequestV2DeliverySchemaEnum[key] === value) { return true; } } } return false; } function V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSON(json) { return V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSONTyped(json, false); } function V2DeliveryCheckoutRequestV2DeliverySchemaEnumFromJSONTyped(json, ignoreDiscriminator) { return json; } function V2DeliveryCheckoutRequestV2DeliverySchemaEnumToJSON(value) { return value; }