release 0.1.0
This commit is contained in:
93
dist/models/V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest.d.ts
vendored
Normal file
93
dist/models/V1WarehouseERFBSNonIntegratedDeliveryMethodUpdateRequest.d.ts
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
/**
|
||||
* Документация Ozon Seller API
|
||||
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](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;
|
||||
Reference in New Issue
Block a user