shipstation-client
Version:
ShipStation V2 SDK
32 lines (31 loc) • 1 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 { ErrorWithLabelId } from './error-with-label-id';
/**
* An error response body
* @export
* @interface ErrorWithLabelIdResponseBody
*/
export interface ErrorWithLabelIdResponseBody {
/**
* A UUID that uniquely identifies the request id. This can be given to the support team to help debug non-trivial issues that may occur
* @type {string}
* @memberof ErrorWithLabelIdResponseBody
*/
'request_id': string;
/**
* The errors associated with the failed API call
* @type {Array<ErrorWithLabelId>}
* @memberof ErrorWithLabelIdResponseBody
*/
'errors': Array<ErrorWithLabelId>;
}