shipstation-client
Version:
ShipStation V2 SDK
55 lines (50 loc) • 1.46 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 create manifest request body
* @export
* @interface CreateManifestByObjectRequestBody
*/
export interface CreateManifestByObjectRequestBody {
/**
* A string that uniquely identifies the carrier
* @type {string}
* @memberof CreateManifestByObjectRequestBody
*/
'carrier_id': string;
/**
* The list of label ids to exclude from the manifest
* @type {Array<string>}
* @memberof CreateManifestByObjectRequestBody
*/
'excluded_label_ids'?: Array<string>;
/**
* The list of label ids to include for the manifest
* @type {Array<string>}
* @memberof CreateManifestByObjectRequestBody
*/
'label_ids'?: Array<string>;
/**
* A string that uniquely identifies the warehouse
* @type {string}
* @memberof CreateManifestByObjectRequestBody
*/
'warehouse_id': string;
/**
* The ship date that the shipment will be sent out on
* @type {string}
* @memberof CreateManifestByObjectRequestBody
*/
'ship_date': string;
}