diff --git a/src/api-models/index.ts b/src/api-models/index.ts index 468168de..61561f7e 100644 --- a/src/api-models/index.ts +++ b/src/api-models/index.ts @@ -851,6 +851,7 @@ export { BuyerTaxInfo as ShipmentInvoicingApiModelBuyerTaxInfo, GetInvoiceStatusResponse as ShipmentInvoicingApiModelGetInvoiceStatusResponse, GetShipmentDetailsResponse as ShipmentInvoicingApiModelGetShipmentDetailsResponse, + MarketplaceTaxInfo as ShipmentInvoicingApiModelMarketplaceTaxInfo, ModelError as ShipmentInvoicingApiModelModelError, Money as ShipmentInvoicingApiModelMoney, ShipmentDetail as ShipmentInvoicingApiModelShipmentDetail, diff --git a/src/api-models/shipment-invoicing-api-model/api.ts b/src/api-models/shipment-invoicing-api-model/api.ts index efccf2aa..1bc34ac2 100644 --- a/src/api-models/shipment-invoicing-api-model/api.ts +++ b/src/api-models/shipment-invoicing-api-model/api.ts @@ -173,6 +173,31 @@ export interface GetShipmentDetailsResponse { */ errors?: Array; } +/** + * Tax information about the marketplace. + * @export + * @interface MarketplaceTaxInfo + */ +export interface MarketplaceTaxInfo { + /** + * The legal name of the company. + * @type {string} + * @memberof MarketplaceTaxInfo + */ + CompanyLegalName?: string; + /** + * The country or region imposing the tax. + * @type {string} + * @memberof MarketplaceTaxInfo + */ + TaxingRegion?: string; + /** + * The list of tax classifications. + * @type {Array} + * @memberof MarketplaceTaxInfo + */ + TaxClassifications?: Array; +} /** * An error response returned when the request is unsuccessful. * @export @@ -289,6 +314,18 @@ export interface ShipmentDetail { * @memberof ShipmentDetail */ BuyerTaxInfo?: BuyerTaxInfo; + /** + * + * @type {MarketplaceTaxInfo} + * @memberof ShipmentDetail + */ + MarketplaceTaxInfo?: MarketplaceTaxInfo; + /** + * The seller’s friendly name registered in the marketplace. + * @type {string} + * @memberof ShipmentDetail + */ + SellerDisplayName?: string; /** * A list of shipment items. * @type {Array}