shipstation-client
Version:
ShipStation V2 SDK
28 lines (20 loc) • 827 B
Markdown
# Dimensions
The dimensions of a package
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**unit** | [**DimensionUnit**](DimensionUnit.md) | | [default to undefined]
**length** | **number** | The length of the package, in the specified unit | [default to 0]
**width** | **number** | The width of the package, in the specified unit | [default to 0]
**height** | **number** | The height of the package, in the specified unit | [default to 0]
## Example
```typescript
import { Dimensions } from 'shipstation-client';
const instance: Dimensions = {
unit,
length,
width,
height,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)