Files
ozon-seller-typescript/dist/models/V3FbsPostingRequirementsV3.d.ts
2026-08-21 12:19:50 +00:00

90 lines
6.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Документация 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.
*/
/**
* Cписок продуктов, для которых нужно передать страну-изготовителя, номер грузовой таможенной декларации (ГТД), регистрационный номер партии товара (РНПТ), маркировку «Честный ЗНАК», другие маркировки или вес, чтобы перевести отправление в следующий статус.
* @export
* @interface V3FbsPostingRequirementsV3
*/
export interface V3FbsPostingRequirementsV3 {
/**
* Список идентификаторов товаров (SKU), для которых нужно изменить страну-изготовитель. Чтобы изменить страну-изготовитель, используйте методы [/v2/posting/fbs/product/country/list](#operation/PostingAPI_ListCountryProductFbsPostingV2) и [/v2/posting/fbs/product/country/set](#operation/PostingAPI_SetCountryProductFbsPostingV2).
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_change_country?: Array<string>;
/**
* Список идентификаторов товаров (SKU), для которых нужно передать номера таможенной декларации (ГТД).
*
* До сборки отправления передайте для всех перечисленных товаров номер таможенной декларации или информацию о том,
* что номера нет, методом [/v6/fbs/posting/product/exemplar/set](#operation/PostingAPI_FbsPostingProductExemplarSetV6).
*
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_gtd?: Array<string>;
/**
* Список идентификаторов товаров (SKU), для которых нужно передать информацию о стране-изготовителе.
*
* Для сборки отправления передайте информацию о стране-изготовителе для всех перечисленных товаров с помощью метода [/v2/posting/fbs/product/country/set](#operation/PostingAPI_SetCountryProductFbsPostingV2).
*
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_country?: Array<string>;
/**
* Список идентификаторов товаров (SKU), для которых нужно передать маркировку «Честный ЗНАК».
*
* До сборки отправления передайте для всех перечисленных товаров маркировку «Честный ЗНАК» методом [/v6/fbs/posting/product/exemplar/set](#operation/PostingAPI_FbsPostingProductExemplarSetV6).
*
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_mandatory_mark?: Array<string>;
/**
* Список товаров, для которых нужно передать уникальный идентификационный номер (УИН) ювелирного изделия.
*
* До сборки отправления передайте для всех перечисленных товаров уникальный идентификационный номер (УИН) методом [/v6/fbs/posting/product/exemplar/set](#operation/PostingAPI_FbsPostingProductExemplarSetV6).
*
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_jw_uin?: Array<string>;
/**
* Список идентификаторов товаров (SKU), для которых нужно передать регистрационный номер партии товара (РНПТ).
*
* До сборки отправления передайте для всех перечисленных товаров регистрационный номер партии товара (РНПТ) методом [/v6/fbs/posting/product/exemplar/set](#operation/PostingAPI_FbsPostingProductExemplarSetV6).
*
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_rnpt?: Array<string>;
/**
* Список товаров, для которых нужно передать вес.
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_weight?: Array<string>;
/**
* Список идентификаторов товаров, для которых нужно передать IMEI.
* @type {Array<string>}
* @memberof V3FbsPostingRequirementsV3
*/
products_requiring_imei?: Array<string>;
}
/**
* Check if a given object implements the V3FbsPostingRequirementsV3 interface.
*/
export declare function instanceOfV3FbsPostingRequirementsV3(value: object): value is V3FbsPostingRequirementsV3;
export declare function V3FbsPostingRequirementsV3FromJSON(json: any): V3FbsPostingRequirementsV3;
export declare function V3FbsPostingRequirementsV3FromJSONTyped(json: any, ignoreDiscriminator: boolean): V3FbsPostingRequirementsV3;
export declare function V3FbsPostingRequirementsV3ToJSON(value?: V3FbsPostingRequirementsV3 | null): any;