ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
9 lines (8 loc) • 365 B
TypeScript
import { ShipEstimate } from './ShipEstimate';
export interface ShipEstimateResponse<TShipEstimateResponseXp = any, TShipEstimatesXp = any, TShipMethodsXp = any> {
ShipEstimates?: ShipEstimate<TShipEstimatesXp, TShipMethodsXp>[];
HttpStatusCode?: number;
UnhandledErrorBody?: string;
xp?: TShipEstimateResponseXp;
Succeeded?: boolean;
}