/** * NymOS Private API v1 * * The contents of this file are subject to the NymOS License, version 1.0. * It is forbidden the use of the codes included on this file, even partially, * for third parties, such as its copy, without express authorization of the * intelectual property and commercial rights owners. A copy of the license * may be obtained at http://nymos.io/source-license. The intelectual * property and comercial rights of this file and codes belong to NymOS S.A. * * Copyright (c) 2017. All rights reserved. * */ export interface Problem { /** * An absolute URI that identifies the problem type. When dereferenced, it will provide human-readable documentation for the problem type (e.g., using HTML). */ type?: string; /** * A short, summary of the problem type. Written in english and readable for engineers (usually not suited for non technical stakeholders and not localized); example: Service Unavailable */ title?: string; /** * The HTTP status code generated by the origin server for this occurrence of the problem. */ status?: number; /** * A human readable explanation specific to this occurrence of the problem. */ detail?: string; /** * An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. */ instance?: string; }