/**
* Документация 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 { 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}
* @memberof CargoesV2CargoesGetResponseSupplies
*/
cargoes?: Array;
/**
* Товарный состав грузомест.
* @type {string}
* @memberof CargoesV2CargoesGetResponseSupplies
*/
cargoes_bundle_id?: string;
/**
*
* @type {CargoesV2CargoesGetResponseSuppliesLimits}
* @memberof CargoesV2CargoesGetResponseSupplies
*/
limits?: CargoesV2CargoesGetResponseSuppliesLimits;
/**
* Идентификатор поставки.
* @type {number}
* @memberof CargoesV2CargoesGetResponseSupplies
*/
supply_id?: number;
/**
* Информация о транспортных грузоместах.
* @type {Array}
* @memberof CargoesV2CargoesGetResponseSupplies
*/
transport_cargoes?: Array;
}
/**
* 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;