UNPKG

ez-web-toolkit

Version:
31 lines (30 loc) 537 B
/** * @namespace toolkit.models */ import { HttpStatusCode } from '../../enums/httpStatusCode'; /** * @class toolkit.models.ProblemResult * @classdesc The problem result. */ export declare class ProblemResult { /** * error detail */ detail: string; /** * instance url */ instance: string; /** * error status code */ status: HttpStatusCode; /** * error title */ title: string; /** * error type */ type: string; }