shipstation-client
Version:
ShipStation V2 SDK
66 lines (59 loc) • 1.57 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 { ErrorCode } from './error-code';
// May contain unused imports in some cases
// @ts-ignore
import type { ErrorSource } from './error-source';
// May contain unused imports in some cases
// @ts-ignore
import type { ErrorType } from './error-type';
/**
* The error structure that gets returned with almost all failed API calls
* @export
* @interface ErrorWithLabelId
*/
export interface ErrorWithLabelId {
/**
*
* @type {ErrorSource}
* @memberof ErrorWithLabelId
*/
'error_source': ErrorSource;
/**
*
* @type {ErrorType}
* @memberof ErrorWithLabelId
*/
'error_type': ErrorType;
/**
*
* @type {ErrorCode}
* @memberof ErrorWithLabelId
*/
'error_code': ErrorCode;
/**
* An error message associated with the failed API call
* @type {string}
* @memberof ErrorWithLabelId
*/
'message': string;
/**
* The label this error is associated with if it is specific to a individual label.
* @type {string}
* @memberof ErrorWithLabelId
*/
'label_id'?: string;
}