shipstation-client
Version:
ShipStation V2 SDK
32 lines (24 loc) • 1.29 kB
Markdown
# RateRequestBody
A rate request body
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**carrier_ids** | **Array<string>** | Array of carrier ids to get rates for | [default to undefined]
**package_types** | **Array<string>** | | [optional] [default to undefined]
**service_codes** | **Array<string>** | | [optional] [default to undefined]
**calculate_tax_amount** | **boolean** | Calculate the duties and tariffs for cross border shipments. | [optional] [default to undefined]
**preferred_currency** | **string** | The currencies that are supported by ShipStation are the ones that specified by ISO 4217: https://www.iso.org/iso-4217-currency-codes.html | [optional] [default to undefined]
**is_return** | **boolean** | Indicate if it\'s a return shipment | [optional] [default to undefined]
## Example
```typescript
import { RateRequestBody } from 'shipstation-client';
const instance: RateRequestBody = {
carrier_ids,
package_types,
service_codes,
calculate_tax_amount,
preferred_currency,
is_return,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)