release 0.1.0

This commit is contained in:
apilki
2026-08-21 12:19:50 +00:00
parent 7b0a9d8ad1
commit b73e6aa106
8734 changed files with 470872 additions and 2 deletions

View File

@@ -0,0 +1,71 @@
/**
* Документация 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 { CargoesV2CargoesGetResponseSuppliesCargoesContentTypeEnum } from './CargoesV2CargoesGetResponseSuppliesCargoesContentTypeEnum';
import type { CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo } from './CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo';
import type { CargoesV2CargoesGetResponseSuppliesCargoesPlacementZoneTypeEnum } from './CargoesV2CargoesGetResponseSuppliesCargoesPlacementZoneTypeEnum';
import type { CargoesV2CargoesGetResponseSuppliesCargoesTypeEnum } from './CargoesV2CargoesGetResponseSuppliesCargoesTypeEnum';
/**
*
* @export
* @interface CargoesV2CargoesGetResponseSuppliesCargoes
*/
export interface CargoesV2CargoesGetResponseSuppliesCargoes {
/**
* Идентификатор товарного состава.
* @type {string}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
bundle_id?: string;
/**
* Идентификатор грузоместа.
* @type {number}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
cargo_id?: number;
/**
*
* @type {CargoesV2CargoesGetResponseSuppliesCargoesContentTypeEnum}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
content_type?: CargoesV2CargoesGetResponseSuppliesCargoesContentTypeEnum;
/**
*
* @type {CargoesV2CargoesGetResponseSuppliesCargoesPlacementZoneTypeEnum}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
placement_zone_type?: CargoesV2CargoesGetResponseSuppliesCargoesPlacementZoneTypeEnum;
/**
*
* @type {CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
tracking_info?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo;
/**
* Идентификатор транспортного грузоместа.
* @type {number}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
transport_cargo_id?: number;
/**
*
* @type {CargoesV2CargoesGetResponseSuppliesCargoesTypeEnum}
* @memberof CargoesV2CargoesGetResponseSuppliesCargoes
*/
type?: CargoesV2CargoesGetResponseSuppliesCargoesTypeEnum;
}
/**
* Check if a given object implements the CargoesV2CargoesGetResponseSuppliesCargoes interface.
*/
export declare function instanceOfCargoesV2CargoesGetResponseSuppliesCargoes(value: object): value is CargoesV2CargoesGetResponseSuppliesCargoes;
export declare function CargoesV2CargoesGetResponseSuppliesCargoesFromJSON(json: any): CargoesV2CargoesGetResponseSuppliesCargoes;
export declare function CargoesV2CargoesGetResponseSuppliesCargoesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CargoesV2CargoesGetResponseSuppliesCargoes;
export declare function CargoesV2CargoesGetResponseSuppliesCargoesToJSON(value?: CargoesV2CargoesGetResponseSuppliesCargoes | null): any;