/** * 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 BadGateway */ export interface BadGateway { /** * Human-readable error message * @type {string} * @memberof BadGateway */ error: string; } export declare function BadGatewayFromJSON(json: any): BadGateway; export declare function BadGatewayFromJSONTyped(json: any, ignoreDiscriminator: boolean): BadGateway; export declare function BadGatewayToJSON(value?: BadGateway | null): any;