"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.instanceOfDropOffWarehouseTimeslotsDay = instanceOfDropOffWarehouseTimeslotsDay; exports.DropOffWarehouseTimeslotsDayFromJSON = DropOffWarehouseTimeslotsDayFromJSON; exports.DropOffWarehouseTimeslotsDayFromJSONTyped = DropOffWarehouseTimeslotsDayFromJSONTyped; exports.DropOffWarehouseTimeslotsDayToJSON = DropOffWarehouseTimeslotsDayToJSON; const DropOffWarehouseTimeslotsDayTimeslot_1 = require("./DropOffWarehouseTimeslotsDayTimeslot"); /** * Check if a given object implements the DropOffWarehouseTimeslotsDay interface. */ function instanceOfDropOffWarehouseTimeslotsDay(value) { return true; } function DropOffWarehouseTimeslotsDayFromJSON(json) { return DropOffWarehouseTimeslotsDayFromJSONTyped(json, false); } function DropOffWarehouseTimeslotsDayFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'date_in_timezone': json['date_in_timezone'] == null ? undefined : json['date_in_timezone'], 'timeslots': json['timeslots'] == null ? undefined : (json['timeslots'].map(DropOffWarehouseTimeslotsDayTimeslot_1.DropOffWarehouseTimeslotsDayTimeslotFromJSON)), }; } function DropOffWarehouseTimeslotsDayToJSON(value) { if (value == null) { return value; } return { 'date_in_timezone': value['date_in_timezone'], 'timeslots': value['timeslots'] == null ? undefined : (value['timeslots'].map(DropOffWarehouseTimeslotsDayTimeslot_1.DropOffWarehouseTimeslotsDayTimeslotToJSON)), }; }