/** * Документация 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 LogisticTimeslotDateRange */ export interface LogisticTimeslotDateRange { /** * Дата и время начала интервала. * @type {string} * @memberof LogisticTimeslotDateRange */ from?: string; /** * Дата и время конца интервала. * @type {string} * @memberof LogisticTimeslotDateRange */ to?: string; } /** * Check if a given object implements the LogisticTimeslotDateRange interface. */ export declare function instanceOfLogisticTimeslotDateRange(value: object): value is LogisticTimeslotDateRange; export declare function LogisticTimeslotDateRangeFromJSON(json: any): LogisticTimeslotDateRange; export declare function LogisticTimeslotDateRangeFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogisticTimeslotDateRange; export declare function LogisticTimeslotDateRangeToJSON(value?: LogisticTimeslotDateRange | null): any;