/** * Документация 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 { V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestReturnSettings } from './V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestReturnSettings'; /** * * @export * @interface V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ export interface V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest { /** * Скорость отгрузки. * @type {number} * @memberof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ courier_cutoff: V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCourierCutoffEnum; /** * Время сборки. * @type {number} * @memberof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ cut_in: V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCutInEnum; /** * Идентификатор метода доставки. * @type {number} * @memberof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ delivery_method_id: number; /** * Название метода доставки. * @type {string} * @memberof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ name: string; /** * * @type {V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestReturnSettings} * @memberof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ return_settings: V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestReturnSettings; /** * Идентификатор склада. * @type {number} * @memberof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest */ warehouse_id: number; } /** * @export */ export declare const V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCourierCutoffEnum: { readonly NUMBER_5: 5; readonly NUMBER_10: 10; readonly NUMBER_15: 15; readonly NUMBER_20: 20; readonly NUMBER_25: 25; readonly NUMBER_30: 30; readonly NUMBER_35: 35; readonly NUMBER_40: 40; readonly NUMBER_45: 45; }; export type V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCourierCutoffEnum = typeof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCourierCutoffEnum[keyof typeof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCourierCutoffEnum]; /** * @export */ export declare const V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCutInEnum: { readonly NUMBER_15: 15; readonly NUMBER_30: 30; readonly NUMBER_60: 60; readonly NUMBER_120: 120; readonly NUMBER_180: 180; readonly NUMBER_240: 240; readonly NUMBER_300: 300; readonly NUMBER_360: 360; readonly NUMBER_420: 420; readonly NUMBER_480: 480; }; export type V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCutInEnum = typeof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCutInEnum[keyof typeof V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestCutInEnum]; /** * Check if a given object implements the V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest interface. */ export declare function instanceOfV1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest(value: object): value is V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest; export declare function V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestFromJSON(json: any): V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest; export declare function V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest; export declare function V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequestToJSON(value?: V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest | null): any;