UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

10 lines (9 loc) 334 B
import { StandardizedErrorCode } from './standardized-error-code'; /** @description Basic structure for an error */ export interface DetailedError { standardized_error_code: StandardizedErrorCode; external_error_code?: string; message?: string; external_http_status_code?: number; raw_external_context?: string; }