/** * Документация 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 { V1fbpTimeslot } from './V1fbpTimeslot'; /** * Детали интервала поставки. * @export * @interface DirectDetailsTimeslotDetails */ export interface DirectDetailsTimeslotDetails { /** * * @type {V1fbpTimeslot} * @memberof DirectDetailsTimeslotDetails */ timeslot?: V1fbpTimeslot; /** * Идентификатор бронирования интервала поставки. * @type {string} * @memberof DirectDetailsTimeslotDetails */ timeslot_reservation_id?: string; } /** * Check if a given object implements the DirectDetailsTimeslotDetails interface. */ export declare function instanceOfDirectDetailsTimeslotDetails(value: object): value is DirectDetailsTimeslotDetails; export declare function DirectDetailsTimeslotDetailsFromJSON(json: any): DirectDetailsTimeslotDetails; export declare function DirectDetailsTimeslotDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectDetailsTimeslotDetails; export declare function DirectDetailsTimeslotDetailsToJSON(value?: DirectDetailsTimeslotDetails | null): any;