/** * 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 NotFound */ export interface NotFound { /** * Human-readable error message * @type {string} * @memberof NotFound */ error: string; /** * Machine-readable error code * @type {string} * @memberof NotFound */ code: string; } export declare function NotFoundFromJSON(json: any): NotFound; export declare function NotFoundFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotFound; export declare function NotFoundToJSON(value?: NotFound | null): any;