/** * Документация 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. */ /** * * @export * @interface ValueItem */ export interface ValueItem { /** * Штрихкод товара. Получите методом [/v3/product/info/list](#operation/ProductAPI_GetProductInfoList). * @type {string} * @memberof ValueItem */ barcode?: string; /** * Годен до. * @type {string} * @memberof ValueItem */ expires_at?: string; /** * Идентификатор товара в системе продавца — артикул. * @type {string} * @memberof ValueItem */ offer_id?: string; /** * Размер кванта. * @type {number} * @memberof ValueItem */ quant?: number; /** * Количество товара. * @type {number} * @memberof ValueItem */ quantity?: number; } /** * Check if a given object implements the ValueItem interface. */ export declare function instanceOfValueItem(value: object): value is ValueItem; export declare function ValueItemFromJSON(json: any): ValueItem; export declare function ValueItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValueItem; export declare function ValueItemToJSON(value?: ValueItem | null): any;