/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface InternalServerError */ export interface InternalServerError { /** * Human-readable error message * @type {string} * @memberof InternalServerError */ error?: string; } export declare function InternalServerErrorFromJSON(json: any): InternalServerError; export declare function InternalServerErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): InternalServerError; export declare function InternalServerErrorToJSON(value?: InternalServerError | null): any;