83 lines
3.1 KiB
TypeScript
83 lines
3.1 KiB
TypeScript
/**
|
||
* Документация 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 { CompanyTaxSystemEnum } from './CompanyTaxSystemEnum';
|
||
/**
|
||
* Компания.
|
||
* @export
|
||
* @interface SellerInfoResponseCompany
|
||
*/
|
||
export interface SellerInfoResponseCompany {
|
||
/**
|
||
* Страна.
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
country?: string;
|
||
/**
|
||
* Валюта:
|
||
* - `RUB` — российский рубль;
|
||
* - `EUR` — евро;
|
||
* - `USD` — доллар США;
|
||
* - `CNY` — юань;
|
||
* - `BYN` — белорусский рубль;
|
||
* - `KZT` — тенге;
|
||
* - `KGS` — киргизский сом.
|
||
*
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
currency?: string;
|
||
/**
|
||
* ИНН.
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
inn?: string;
|
||
/**
|
||
* Название юридического лица.
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
legal_name?: string;
|
||
/**
|
||
* Название компании на Ozon.
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
name?: string;
|
||
/**
|
||
* ОГРН.
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
ogrn?: string;
|
||
/**
|
||
* Форма собственности.
|
||
* @type {string}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
ownership_form?: string;
|
||
/**
|
||
*
|
||
* @type {CompanyTaxSystemEnum}
|
||
* @memberof SellerInfoResponseCompany
|
||
*/
|
||
tax_system?: CompanyTaxSystemEnum;
|
||
}
|
||
/**
|
||
* Check if a given object implements the SellerInfoResponseCompany interface.
|
||
*/
|
||
export declare function instanceOfSellerInfoResponseCompany(value: object): value is SellerInfoResponseCompany;
|
||
export declare function SellerInfoResponseCompanyFromJSON(json: any): SellerInfoResponseCompany;
|
||
export declare function SellerInfoResponseCompanyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SellerInfoResponseCompany;
|
||
export declare function SellerInfoResponseCompanyToJSON(value?: SellerInfoResponseCompany | null): any;
|