65 lines
3.4 KiB
TypeScript
65 lines
3.4 KiB
TypeScript
/**
|
||
* Документация 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 { CargoesV2CargoesGetResponseSuppliesCargoes } from './CargoesV2CargoesGetResponseSuppliesCargoes';
|
||
import type { CargoesV2CargoesGetResponseSuppliesLimits } from './CargoesV2CargoesGetResponseSuppliesLimits';
|
||
import type { CargoesV2CargoesGetResponseSuppliesTransportCargoes } from './CargoesV2CargoesGetResponseSuppliesTransportCargoes';
|
||
/**
|
||
*
|
||
* @export
|
||
* @interface CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
export interface CargoesV2CargoesGetResponseSupplies {
|
||
/**
|
||
* Идентификатор товарного состава.
|
||
* @type {string}
|
||
* @memberof CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
bundle_id?: string;
|
||
/**
|
||
* Грузоместа.
|
||
* @type {Array<CargoesV2CargoesGetResponseSuppliesCargoes>}
|
||
* @memberof CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
cargoes?: Array<CargoesV2CargoesGetResponseSuppliesCargoes>;
|
||
/**
|
||
* Товарный состав грузомест.
|
||
* @type {string}
|
||
* @memberof CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
cargoes_bundle_id?: string;
|
||
/**
|
||
*
|
||
* @type {CargoesV2CargoesGetResponseSuppliesLimits}
|
||
* @memberof CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
limits?: CargoesV2CargoesGetResponseSuppliesLimits;
|
||
/**
|
||
* Идентификатор поставки.
|
||
* @type {number}
|
||
* @memberof CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
supply_id?: number;
|
||
/**
|
||
* Информация о транспортных грузоместах.
|
||
* @type {Array<CargoesV2CargoesGetResponseSuppliesTransportCargoes>}
|
||
* @memberof CargoesV2CargoesGetResponseSupplies
|
||
*/
|
||
transport_cargoes?: Array<CargoesV2CargoesGetResponseSuppliesTransportCargoes>;
|
||
}
|
||
/**
|
||
* Check if a given object implements the CargoesV2CargoesGetResponseSupplies interface.
|
||
*/
|
||
export declare function instanceOfCargoesV2CargoesGetResponseSupplies(value: object): value is CargoesV2CargoesGetResponseSupplies;
|
||
export declare function CargoesV2CargoesGetResponseSuppliesFromJSON(json: any): CargoesV2CargoesGetResponseSupplies;
|
||
export declare function CargoesV2CargoesGetResponseSuppliesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CargoesV2CargoesGetResponseSupplies;
|
||
export declare function CargoesV2CargoesGetResponseSuppliesToJSON(value?: CargoesV2CargoesGetResponseSupplies | null): any;
|