ez-web-toolkit
Version:
EZ Web Toolkit
31 lines (30 loc) • 537 B
TypeScript
/**
* @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;
}