/** * Документация 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 { CargoValue } from './CargoValue'; /** * * @export * @interface ResultCargo */ export interface ResultCargo { /** * Ключ грузоместа. * @type {string} * @memberof ResultCargo */ key?: string; /** * * @type {CargoValue} * @memberof ResultCargo */ value?: CargoValue; } /** * Check if a given object implements the ResultCargo interface. */ export declare function instanceOfResultCargo(value: object): value is ResultCargo; export declare function ResultCargoFromJSON(json: any): ResultCargo; export declare function ResultCargoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResultCargo; export declare function ResultCargoToJSON(value?: ResultCargo | null): any;