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

75 lines
3.2 KiB
TypeScript
Raw Permalink 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.
*/
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<V2HsCode>}
* @memberof InvoiceGetV2ResponseResult
*/
hs_codes?: Array<V2HsCode>;
/**
* Номер счёта-фактуры.
* @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;