/** * This file was auto-generated by Fern from our API Definition. */ import * as Airtop from "../index"; export interface ErrorModel { /** A human-readable explanation specific to this occurrence of the problem. */ detail?: string; /** Optional list of individual error details */ errors?: Airtop.ErrorDetail[]; /** A URI reference that identifies the specific occurrence of the problem. */ instance?: string; /** HTTP status code */ status?: number; /** A short, human-readable summary of the problem type. This value should not change between occurrences of the error. */ title?: string; /** A URI reference to human-readable documentation for the error. */ type?: string; }