shipstation-client
Version:
ShipStation V2 SDK
32 lines (24 loc) • 1.81 kB
Markdown
# CreateReturnLabelRequestBody
A create return label request body
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**charge_event** | [**LabelChargeEvent**](LabelChargeEvent.md) | The label charge event. | [optional] [default to undefined]
**label_layout** | [**LabelLayout**](LabelLayout.md) | The layout (size) that you want the label to be in. The `label_format` determines which sizes are allowed. `4x6` is supported for all label formats, whereas `letter` (8.5\" x 11\") is only supported for `pdf` format. | [optional] [default to undefined]
**label_format** | [**LabelFormat**](LabelFormat.md) | The file format that you want the label to be in. We recommend `pdf` format because it is supported by all carriers, whereas some carriers do not support the `png` or `zpl` formats. | [optional] [default to undefined]
**label_download_type** | [**LabelDownloadType**](LabelDownloadType.md) | | [optional] [default to undefined]
**display_scheme** | [**DisplayScheme**](DisplayScheme.md) | The display format that the label should be shown in. | [optional] [default to undefined]
**label_image_id** | **string** | The label image resource that was used to create a custom label image. | [optional] [default to undefined]
## Example
```typescript
import { CreateReturnLabelRequestBody } from 'shipstation-client';
const instance: CreateReturnLabelRequestBody = {
charge_event,
label_layout,
label_format,
label_download_type,
display_scheme,
label_image_id,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)