shipstation-client
Version:
ShipStation V2 SDK
97 lines (92 loc) • 2.39 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { ManifestDownload } from './manifest-download';
/**
* Deprecated manifest resource
* @export
* @interface DeprecatedManifest
*/
export interface DeprecatedManifest {
/**
* A string that uniquely identifies the manifest
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'manifest_id'?: string;
/**
* A string that uniquely identifies the form
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'form_id'?: string;
/**
* The date-time that the manifest was created
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'created_at'?: string;
/**
* The date-time that the manifests shipments will be picked up
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'ship_date'?: string;
/**
* The number of shipments that are included in this manifest
* @type {number}
* @memberof DeprecatedManifest
* @deprecated
*/
'shipments'?: number;
/**
* A string that uniquely identifies the warehouse
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'warehouse_id'?: string;
/**
* A string that uniquely identifies the submission
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'submission_id'?: string;
/**
* A string that uniquely identifies the carrier
* @type {string}
* @memberof DeprecatedManifest
* @deprecated
*/
'carrier_id'?: string;
/**
*
* @type {ManifestDownload}
* @memberof DeprecatedManifest
* @deprecated
*/
'manifest_download'?: ManifestDownload;
/**
* An array of the label ids used in this manifest.
* @type {Array<string>}
* @memberof DeprecatedManifest
*/
'label_ids'?: Array<string>;
}