/** * This is used to map the error details in response * @export * @class NotFoundErrorResponse */ export declare class NotFoundErrorResponse { /** * @type {number} * @memberof NotFoundErrorResponse */ code?: number | undefined; /** * @type {string} * @memberof NotFoundErrorResponse */ message?: string | undefined; }