release 0.1.0
This commit is contained in:
93
dist/models/SupplyOrderDetailsResponseSupply.d.ts
vendored
Normal file
93
dist/models/SupplyOrderDetailsResponseSupply.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 { SupplyETTN } from './SupplyETTN';
|
||||
import type { SupplyContent } from './SupplyContent';
|
||||
import type { SupplyOverdueReasonEnum } from './SupplyOverdueReasonEnum';
|
||||
import type { SupplyStateEnum } from './SupplyStateEnum';
|
||||
import type { SupplyCancellationAllowability } from './SupplyCancellationAllowability';
|
||||
import type { SupplyTags } from './SupplyTags';
|
||||
import type { SupplyStorageWarehouse } from './SupplyStorageWarehouse';
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
export interface SupplyOrderDetailsResponseSupply {
|
||||
/**
|
||||
*
|
||||
* @type {SupplyCancellationAllowability}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
cancellation_allowability?: SupplyCancellationAllowability;
|
||||
/**
|
||||
*
|
||||
* @type {SupplyContent}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
content?: SupplyContent;
|
||||
/**
|
||||
*
|
||||
* @type {SupplyETTN}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
ettn_info?: SupplyETTN;
|
||||
/**
|
||||
* `true`, если поставка кросс-докинг.
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
is_crossdock?: boolean;
|
||||
/**
|
||||
*
|
||||
* @type {SupplyOverdueReasonEnum}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
overdue_reason?: SupplyOverdueReasonEnum;
|
||||
/**
|
||||
*
|
||||
* @type {SupplyStorageWarehouse}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
storage_warehouse?: SupplyStorageWarehouse;
|
||||
/**
|
||||
* Идентификатор кластера размещения.
|
||||
* @type {number}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
macrolocal_cluster_id?: number;
|
||||
/**
|
||||
* Идентификатор поставки.
|
||||
* @type {number}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
supply_id?: number;
|
||||
/**
|
||||
*
|
||||
* @type {SupplyStateEnum}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
supply_state?: SupplyStateEnum;
|
||||
/**
|
||||
*
|
||||
* @type {SupplyTags}
|
||||
* @memberof SupplyOrderDetailsResponseSupply
|
||||
*/
|
||||
supply_tags?: SupplyTags;
|
||||
}
|
||||
/**
|
||||
* Check if a given object implements the SupplyOrderDetailsResponseSupply interface.
|
||||
*/
|
||||
export declare function instanceOfSupplyOrderDetailsResponseSupply(value: object): value is SupplyOrderDetailsResponseSupply;
|
||||
export declare function SupplyOrderDetailsResponseSupplyFromJSON(json: any): SupplyOrderDetailsResponseSupply;
|
||||
export declare function SupplyOrderDetailsResponseSupplyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplyOrderDetailsResponseSupply;
|
||||
export declare function SupplyOrderDetailsResponseSupplyToJSON(value?: SupplyOrderDetailsResponseSupply | null): any;
|
||||
Reference in New Issue
Block a user