UNPKG

shipstation-client

Version:
112 lines (107 loc) 2.81 kB
/* tslint:disable */ /* eslint-disable */ /** * ShipStation API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { DangerousGoods } from './dangerous-goods'; // May contain unused imports in some cases // @ts-ignore import type { MonetaryValue } from './monetary-value'; // May contain unused imports in some cases // @ts-ignore import type { Weight } from './weight'; /** * The customs declaration for a single item in the shipment. * @export * @interface Products */ export interface Products { /** * A description of the item * @type {string} * @memberof Products */ 'description'?: string | null; /** * The quantity of this item in the shipment. * @type {number} * @memberof Products */ 'quantity'?: number; /** * The declared value of each item * @type {MonetaryValue} * @memberof Products */ 'value'?: MonetaryValue; /** * The item weight * @type {Weight} * @memberof Products */ 'weight'?: Weight; /** * The [Harmonized Tariff Code](https://en.wikipedia.org/wiki/Harmonized_System) of this item. * @type {string} * @memberof Products */ 'harmonized_tariff_code'?: string | null; /** * The two-letter [ISO 3166-1 country code](https://en.wikipedia.org/wiki/ISO_3166-1) where this item originated * @type {string} * @memberof Products */ 'country_of_origin'?: string | null; /** * * @type {string} * @memberof Products */ 'unit_of_measure'?: string | null; /** * The SKU (Stock Keeping Unit) of the item * @type {string} * @memberof Products */ 'sku'?: string | null; /** * Description of the Custom Item\'s SKU * @type {string} * @memberof Products */ 'sku_description'?: string | null; /** * Manufacturers Identification code * @type {string} * @memberof Products */ 'mid_code'?: string | null; /** * link to the item on the seller website * @type {string} * @memberof Products */ 'product_url'?: string | null; /** * VAT rate applicable to the item * @type {number} * @memberof Products */ 'vat_rate'?: number | null; /** * Details about dangerous goods inside products * @type {Array<DangerousGoods>} * @memberof Products */ 'dangerous_goods'?: Array<DangerousGoods>; }