shipstation-client
Version:
ShipStation V2 SDK
94 lines (89 loc) • 2.43 kB
text/typescript
/* 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 { Weight } from './weight';
/**
* The customs declaration for a single item in the shipment.
* @export
* @interface CustomsItem
*/
export interface CustomsItem {
/**
* A string that uniquely identifies the customs item
* @type {string}
* @memberof CustomsItem
*/
'customs_item_id': string;
/**
* A description of the item
* @type {string}
* @memberof CustomsItem
*/
'description'?: string | null;
/**
* The quantity of this item in the shipment.
* @type {number}
* @memberof CustomsItem
*/
'quantity'?: number;
/**
* The monetary amount, in the specified currency.
* @type {number}
* @memberof CustomsItem
*/
'value'?: number;
/**
* The currencies that are supported by ShipStation are the ones that specified by ISO 4217: https://www.iso.org/iso-4217-currency-codes.html
* @type {string}
* @memberof CustomsItem
*/
'value_currency'?: string;
/**
* The item weight
* @type {Weight}
* @memberof CustomsItem
*/
'weight'?: Weight;
/**
* The [Harmonized Tariff Code](https://en.wikipedia.org/wiki/Harmonized_System) of this item.
* @type {string}
* @memberof CustomsItem
*/
'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 CustomsItem
*/
'country_of_origin'?: string | null;
/**
*
* @type {string}
* @memberof CustomsItem
*/
'unit_of_measure'?: string | null;
/**
* The SKU (Stock Keeping Unit) of the customs item
* @type {string}
* @memberof CustomsItem
*/
'sku'?: string | null;
/**
* Description of the Custom Item\'s SKU
* @type {string}
* @memberof CustomsItem
*/
'sku_description'?: string | null;
}