UNPKG

shipstation-client

Version:
52 lines (51 loc) 1.34 kB
/** * 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 { ErrorCode } from './error-code'; import type { ErrorSource } from './error-source'; 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; }