/** * Документация 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 { 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;