/**
* Документация 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 { V1ItemResponse } from './V1ItemResponse';
/**
*
* @export
* @interface V1GetSupplyOrderBundleResponse
*/
export interface V1GetSupplyOrderBundleResponse {
/**
* Список товаров в заявке на поставку.
* @type {Array}
* @memberof V1GetSupplyOrderBundleResponse
*/
items?: Array;
/**
* Количество товаров в заявке.
* @type {number}
* @memberof V1GetSupplyOrderBundleResponse
*/
total_count?: number;
/**
* Признак, что в ответе вернули не все товары:
* - `true` — сделайте повторный запрос с другим значением `last_id`, чтобы получить остальные значения;
* - `false` — ответ содержит все значения характеристики.
*
* @type {boolean}
* @memberof V1GetSupplyOrderBundleResponse
*/
has_next?: boolean;
/**
* Идентификатор последнего значения на странице.
* @type {string}
* @memberof V1GetSupplyOrderBundleResponse
*/
last_id?: string;
}
/**
* Check if a given object implements the V1GetSupplyOrderBundleResponse interface.
*/
export declare function instanceOfV1GetSupplyOrderBundleResponse(value: object): value is V1GetSupplyOrderBundleResponse;
export declare function V1GetSupplyOrderBundleResponseFromJSON(json: any): V1GetSupplyOrderBundleResponse;
export declare function V1GetSupplyOrderBundleResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1GetSupplyOrderBundleResponse;
export declare function V1GetSupplyOrderBundleResponseToJSON(value?: V1GetSupplyOrderBundleResponse | null): any;