shipstation-client
Version:
ShipStation V2 SDK
51 lines (50 loc) • 1.28 kB
TypeScript
/**
* 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.
*/
import type { PaginationLink } from './pagination-link';
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;
}