shipstation-client
Version:
ShipStation V2 SDK
61 lines (56 loc) • 1.44 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 { PaginationLink } from './pagination-link';
// May contain unused imports in some cases
// @ts-ignore
import type { Shipment } from './shipment';
/**
* A list shipment response body
* @export
* @interface ListShipmentsResponseBody
*/
export interface ListShipmentsResponseBody {
/**
* The list of shipments returned by the api call
* @type {Array<Shipment>}
* @memberof ListShipmentsResponseBody
*/
'shipments': Array<Shipment>;
/**
* Total number of shipments returned by the api call
* @type {number}
* @memberof ListShipmentsResponseBody
*/
'total': number;
/**
*
* @type {number}
* @memberof ListShipmentsResponseBody
*/
'page': number;
/**
*
* @type {number}
* @memberof ListShipmentsResponseBody
*/
'pages': number;
/**
*
* @type {PaginationLink}
* @memberof ListShipmentsResponseBody
*/
'links': PaginationLink;
}