shipstation-client
Version:
ShipStation V2 SDK
30 lines (22 loc) • 1.23 kB
Markdown
# UpdatePackageTypeRequestBody
An update package type request body
## 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 { UpdatePackageTypeRequestBody } from 'shipstation-client';
const instance: UpdatePackageTypeRequestBody = {
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)