/** * Документация 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 { V1ItemSortField } from './V1ItemSortField'; import type { GetSupplyOrderBundleRequestItemTagsCalculation } from './GetSupplyOrderBundleRequestItemTagsCalculation'; /** * * @export * @interface V1GetSupplyOrderBundleRequest */ export interface V1GetSupplyOrderBundleRequest { /** * Идентификаторы товарного состава поставки. Можно получить в методе [/v3/supply-order/get](#operation/SupplyOrderGet). * @type {Array} * @memberof V1GetSupplyOrderBundleRequest */ bundle_ids: Array; /** * `true`, чтобы сортировать по возрастанию. * * @type {boolean} * @memberof V1GetSupplyOrderBundleRequest */ is_asc?: boolean; /** * * @type {GetSupplyOrderBundleRequestItemTagsCalculation} * @memberof V1GetSupplyOrderBundleRequest */ item_tags_calculation?: GetSupplyOrderBundleRequestItemTagsCalculation; /** * Идентификатор последнего значения SKU на странице. * @type {string} * @memberof V1GetSupplyOrderBundleRequest */ last_id?: string; /** * Количество товаров на странице. * @type {number} * @memberof V1GetSupplyOrderBundleRequest */ limit: number; /** * Поисковый запрос, например: по названию, артикулу или SKU. * * @type {string} * @memberof V1GetSupplyOrderBundleRequest */ query?: string; /** * * @type {V1ItemSortField} * @memberof V1GetSupplyOrderBundleRequest */ sort_field?: V1ItemSortField; } /** * Check if a given object implements the V1GetSupplyOrderBundleRequest interface. */ export declare function instanceOfV1GetSupplyOrderBundleRequest(value: object): value is V1GetSupplyOrderBundleRequest; export declare function V1GetSupplyOrderBundleRequestFromJSON(json: any): V1GetSupplyOrderBundleRequest; export declare function V1GetSupplyOrderBundleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1GetSupplyOrderBundleRequest; export declare function V1GetSupplyOrderBundleRequestToJSON(value?: V1GetSupplyOrderBundleRequest | null): any;