/** * Документация 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 { CargoesV2CargoesDeleteRequestTransportCargoDeletionTypeEnum } from './CargoesV2CargoesDeleteRequestTransportCargoDeletionTypeEnum'; /** * * @export * @interface CargoesV2CargoesDeleteRequest */ export interface CargoesV2CargoesDeleteRequest { /** * Список идентификаторов грузомест, которые нужно удалить. * @type {Array} * @memberof CargoesV2CargoesDeleteRequest */ cargo_ids?: Array; /** * Идентификатор поставки. Получите значение параметра методом [/v3/supply-order/get](#operation/SupplyOrderGet). * @type {number} * @memberof CargoesV2CargoesDeleteRequest */ supply_id: number; /** * * @type {CargoesV2CargoesDeleteRequestTransportCargoDeletionTypeEnum} * @memberof CargoesV2CargoesDeleteRequest */ transport_cargo_deletion_type: CargoesV2CargoesDeleteRequestTransportCargoDeletionTypeEnum; /** * Список идентификаторов транспортных грузомест, которые нужно удалить. * @type {Array} * @memberof CargoesV2CargoesDeleteRequest */ transport_cargo_ids?: Array; } /** * Check if a given object implements the CargoesV2CargoesDeleteRequest interface. */ export declare function instanceOfCargoesV2CargoesDeleteRequest(value: object): value is CargoesV2CargoesDeleteRequest; export declare function CargoesV2CargoesDeleteRequestFromJSON(json: any): CargoesV2CargoesDeleteRequest; export declare function CargoesV2CargoesDeleteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CargoesV2CargoesDeleteRequest; export declare function CargoesV2CargoesDeleteRequestToJSON(value?: CargoesV2CargoesDeleteRequest | null): any;