sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
18 lines (17 loc) • 554 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { ApiError } from '../core';
import { Error7 } from '../models/error7';
/**
* Creates an instance of LabellingResponseInvalid
*/
interface LabellingResponseInvalid {
/** A list of errors returned from the webservice. See the [Error codes](#tag/Error-codes) for possible values. */
Errors?: Error7[];
}
export declare class LabellingResponseInvalidError extends ApiError<LabellingResponseInvalid> {
}
export {};