/* tslint:disable */ /* eslint-disable */ /** * The Association for Cube Commons * The CubeCommons API caters to each and every whim of the Frontend, i.e. it receives, bundles, packages and formats data exactly as the Frontend needs it. * * The version of the OpenAPI document: 0.9.95 * Contact: tech@cubecommons.ca * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * An error response formatted according to https://datatracker.ietf.org/doc/html/rfc7807 * @export * @interface ErrorResponse */ export interface ErrorResponse { /** * A URI uniquely defining the error type. * @type {string} * @memberof ErrorResponse */ 'type': string; /** * HTTP status code, copied here in case the actual HTTP status code got mangled in transit. * @type {number} * @memberof ErrorResponse */ 'status': number; /** * A short human-readable title. Should stay the same for the same error type. * @type {string} * @memberof ErrorResponse */ 'title'?: string; /** * A long(er) human-readable error description. * @type {string} * @memberof ErrorResponse */ 'detail'?: string; /** * A URI uniquely identifying this specific occurrence of the error. * @type {string} * @memberof ErrorResponse */ 'instance'?: string; }