release 0.1.0
This commit is contained in:
47
dist/models/V1SupplyOrderContentUpdateRequest.d.ts
vendored
Normal file
47
dist/models/V1SupplyOrderContentUpdateRequest.d.ts
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* Документация 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 { V1SupplyOrderContentUpdateRequestItem } from './V1SupplyOrderContentUpdateRequestItem';
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface V1SupplyOrderContentUpdateRequest
|
||||
*/
|
||||
export interface V1SupplyOrderContentUpdateRequest {
|
||||
/**
|
||||
* Новый товарный состав заявки на поставку.
|
||||
*
|
||||
* Максимум 5000 товаров.
|
||||
*
|
||||
* @type {Array<V1SupplyOrderContentUpdateRequestItem>}
|
||||
* @memberof V1SupplyOrderContentUpdateRequest
|
||||
*/
|
||||
items: Array<V1SupplyOrderContentUpdateRequestItem>;
|
||||
/**
|
||||
* Идентификатор заявки на поставку.
|
||||
* @type {number}
|
||||
* @memberof V1SupplyOrderContentUpdateRequest
|
||||
*/
|
||||
order_id: number;
|
||||
/**
|
||||
* Идентификатор поставки.
|
||||
* @type {number}
|
||||
* @memberof V1SupplyOrderContentUpdateRequest
|
||||
*/
|
||||
supply_id: number;
|
||||
}
|
||||
/**
|
||||
* Check if a given object implements the V1SupplyOrderContentUpdateRequest interface.
|
||||
*/
|
||||
export declare function instanceOfV1SupplyOrderContentUpdateRequest(value: object): value is V1SupplyOrderContentUpdateRequest;
|
||||
export declare function V1SupplyOrderContentUpdateRequestFromJSON(json: any): V1SupplyOrderContentUpdateRequest;
|
||||
export declare function V1SupplyOrderContentUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1SupplyOrderContentUpdateRequest;
|
||||
export declare function V1SupplyOrderContentUpdateRequestToJSON(value?: V1SupplyOrderContentUpdateRequest | null): any;
|
||||
Reference in New Issue
Block a user