/** * Документация 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. */ /** * Таймслот поставки. * @export * @interface V2DraftSupplyCreateRequestTimeslot */ export interface V2DraftSupplyCreateRequestTimeslot { /** * Начало таймслота. * @type {string} * @memberof V2DraftSupplyCreateRequestTimeslot */ from_in_timezone?: string; /** * Конец таймслота. * @type {string} * @memberof V2DraftSupplyCreateRequestTimeslot */ to_in_timezone?: string; } /** * Check if a given object implements the V2DraftSupplyCreateRequestTimeslot interface. */ export declare function instanceOfV2DraftSupplyCreateRequestTimeslot(value: object): value is V2DraftSupplyCreateRequestTimeslot; export declare function V2DraftSupplyCreateRequestTimeslotFromJSON(json: any): V2DraftSupplyCreateRequestTimeslot; export declare function V2DraftSupplyCreateRequestTimeslotFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2DraftSupplyCreateRequestTimeslot; export declare function V2DraftSupplyCreateRequestTimeslotToJSON(value?: V2DraftSupplyCreateRequestTimeslot | null): any;