/**
* Документация 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 { V2HsCode } from './V2HsCode';
/**
* Информация о счёте-фактуре.
* @export
* @interface InvoiceGetV2ResponseResult
*/
export interface InvoiceGetV2ResponseResult {
/**
* Дата загрузки счёта-фактуры.
* @type {string}
* @memberof InvoiceGetV2ResponseResult
*/
date?: string;
/**
* Ссылка на счёт-фактуру.
* @type {string}
* @memberof InvoiceGetV2ResponseResult
*/
file_url?: string;
/**
* HS-коды товаров.
* @type {Array}
* @memberof InvoiceGetV2ResponseResult
*/
hs_codes?: Array;
/**
* Номер счёта-фактуры.
* @type {string}
* @memberof InvoiceGetV2ResponseResult
*/
number?: string;
/**
* Стоимость, указанная в счёте-фактуре.
* Разделитель дробной части — точка, до двух знаков после точки.
* Пример: `199.99`.
*
* @type {number}
* @memberof InvoiceGetV2ResponseResult
*/
price?: number;
/**
* Валюта счёта-фактуры:
* - `USD` — доллар,
* - `EUR` — евро,
* - `TRY` — турецкая лира,
* - `CNY` — юань,
* - `RUB` — рубль,
* - `GBP` — фунт стерлингов.
*
* Значение по умолчанию — `USD`.
*
* @type {string}
* @memberof InvoiceGetV2ResponseResult
*/
price_currency?: string;
}
/**
* Check if a given object implements the InvoiceGetV2ResponseResult interface.
*/
export declare function instanceOfInvoiceGetV2ResponseResult(value: object): value is InvoiceGetV2ResponseResult;
export declare function InvoiceGetV2ResponseResultFromJSON(json: any): InvoiceGetV2ResponseResult;
export declare function InvoiceGetV2ResponseResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceGetV2ResponseResult;
export declare function InvoiceGetV2ResponseResultToJSON(value?: InvoiceGetV2ResponseResult | null): any;