/** * Документация 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. */ import type { ValueTimezoneInfo } from './ValueTimezoneInfo'; import type { TimeslotValueTimeslot } from './TimeslotValueTimeslot'; /** * Информация об интервале доставки. * @export * @interface SupplyOrderDetailsResponseTimeslotValue */ export interface SupplyOrderDetailsResponseTimeslotValue { /** * * @type {TimeslotValueTimeslot} * @memberof SupplyOrderDetailsResponseTimeslotValue */ timeslot?: TimeslotValueTimeslot; /** * * @type {ValueTimezoneInfo} * @memberof SupplyOrderDetailsResponseTimeslotValue */ timezone_info?: ValueTimezoneInfo; } /** * Check if a given object implements the SupplyOrderDetailsResponseTimeslotValue interface. */ export declare function instanceOfSupplyOrderDetailsResponseTimeslotValue(value: object): value is SupplyOrderDetailsResponseTimeslotValue; export declare function SupplyOrderDetailsResponseTimeslotValueFromJSON(json: any): SupplyOrderDetailsResponseTimeslotValue; export declare function SupplyOrderDetailsResponseTimeslotValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplyOrderDetailsResponseTimeslotValue; export declare function SupplyOrderDetailsResponseTimeslotValueToJSON(value?: SupplyOrderDetailsResponseTimeslotValue | null): any;