UNPKG

@sp-api-sdk/shipment-invoicing-api-v0

Version:

The Selling Partner API for Shipment Invoicing helps you programmatically retrieve shipment invoice information in the Brazil marketplace for a selling partner’s Fulfillment by Amazon (FBA) orders.

38 lines (37 loc) 1.11 kB
/** * Selling Partner API for Shipment Invoicing * The Selling Partner API for Shipment Invoicing helps you programmatically retrieve shipment invoice information in the Brazil marketplace for a selling partner’s Fulfillment by Amazon (FBA) orders. * * The version of the OpenAPI document: v0 * * * 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 { TaxClassification } from './tax-classification'; /** * Tax information about the buyer. * @export * @interface BuyerTaxInfo */ export interface BuyerTaxInfo { /** * The legal name of the company. * @type {string} * @memberof BuyerTaxInfo */ 'CompanyLegalName'?: string; /** * The country or region imposing the tax. * @type {string} * @memberof BuyerTaxInfo */ 'TaxingRegion'?: string; /** * The list of tax classifications. * @type {Array<TaxClassification>} * @memberof BuyerTaxInfo */ 'TaxClassifications'?: Array<TaxClassification>; }