shipstation-client
Version:
ShipStation V2 SDK
61 lines (56 loc) • 1.49 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* ShipStation API v2
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* A rate request body
* @export
* @interface RateRequestBody
*/
export interface RateRequestBody {
/**
* Array of carrier ids to get rates for
* @type {Array<string>}
* @memberof RateRequestBody
*/
'carrier_ids': Array<string>;
/**
*
* @type {Array<string>}
* @memberof RateRequestBody
*/
'package_types'?: Array<string>;
/**
*
* @type {Array<string>}
* @memberof RateRequestBody
*/
'service_codes'?: Array<string>;
/**
* Calculate the duties and tariffs for cross border shipments.
* @type {boolean}
* @memberof RateRequestBody
*/
'calculate_tax_amount'?: boolean;
/**
* The currencies that are supported by ShipStation are the ones that specified by ISO 4217: https://www.iso.org/iso-4217-currency-codes.html
* @type {string}
* @memberof RateRequestBody
*/
'preferred_currency'?: string;
/**
* Indicate if it\'s a return shipment
* @type {boolean}
* @memberof RateRequestBody
*/
'is_return'?: boolean;
}