You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Represents an error appearing in the `errors` array at the document top-level
/// </summary>
publicinterfaceIError
{
/// <summary>
/// a unique identifier for this particular occurrence of the problem.
/// </summary>
stringId{get;}
/// <summary>
/// link to information about this error
/// </summary>
ILinkAboutLink{get;}
/// <summary>
/// the HTTP status code applicable to this problem, expressed as a string value.
/// </summary>
HttpStatusCodeStatus{get;}
/// <summary>
/// an application-specific error code, expressed as a string value.
/// </summary>
stringCode{get;}
/// <summary>
/// a short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
/// </summary>
stringTitle{get;}
/// <summary>
/// a human-readable explanation specific to this occurrence of the problem.
/// </summary>
stringDetail{get;}
/// <summary>
/// a JSON Pointer [RFC6901] to the associated entity in the request document
/// </summary>
stringPointer{get;}
/// <summary>
/// a string indicating which query parameter caused the error.
/// </summary>
stringParameter{get;}
/// <summary>
/// a meta object containing non-standard meta-information about the error.