UNPKG

shipstation-client

Version:
30 lines (22 loc) 1.2 kB
# PackageType A package type that a carrier supports for shipment. ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **package_id** | **string** | A string that uniquely identifies the package. | [optional] [default to undefined] **package_code** | **string** | A [package type] , such as `thick_envelope`, `small_flat_rate_box`, `large_package`, etc. Use the code `package` for custom or unknown package types. | [default to undefined] **name** | **string** | | [default to undefined] **dimensions** | [**Dimensions**](Dimensions.md) | The custom dimensions for the package. | [optional] [default to undefined] **description** | **string** | Provides a helpful description for the custom package. | [optional] [default to undefined] ## Example ```typescript import { PackageType } from 'shipstation-client'; const instance: PackageType = { package_id, package_code, name, dimensions, description, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)