UNPKG

@sp-api-sdk/sellers-api-v1

Version:

The Selling Partner API for Sellers (Sellers API) provides essential information about seller accounts, such as: The marketplaces a seller can list in The default language and currency of a marketplace Whether the seller has suspended listings Refer to th

50 lines (49 loc) 1.93 kB
/** * The Selling Partner API for Sellers * The [Selling Partner API for Sellers](https://developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) (Sellers API) provides essential information about seller accounts, such as: - The marketplaces a seller can list in - The default language and currency of a marketplace - Whether the seller has suspended listings Refer to the [Sellers API reference](https://developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) for details about this API\'s operations, data types, and schemas. * * The version of the OpenAPI document: v1 * * * 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 { Address } from './address'; /** * Information about the seller\'s business. Certain fields may be omitted depending on the seller\'s `businessType`. * @export * @interface Business */ export interface Business { /** * The registered business name. * @type {string} * @memberof Business */ 'name': string; /** * * @type {Address} * @memberof Business */ 'registeredBusinessAddress': Address; /** * The seller\'s company registration number, if applicable. This field will be absent for individual sellers and sole proprietorships. * @type {string} * @memberof Business */ 'companyRegistrationNumber'?: string; /** * The seller\'s company tax identification number, if applicable. This field will be present for certain business types only, such as sole proprietorships. * @type {string} * @memberof Business */ 'companyTaxIdentificationNumber'?: string; /** * The non-Latin script version of the registered business name, if applicable. * @type {string} * @memberof Business */ 'nonLatinName'?: string; }