/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 KapacitorAlert */ export interface KapacitorAlert { /** * * @type {string} * @memberof KapacitorAlert */ id: string; /** * * @type {string} * @memberof KapacitorAlert */ level: string; /** * * @type {string} * @memberof KapacitorAlert */ message: string; /** * * @type {string} * @memberof KapacitorAlert */ details: string; /** * * @type {{ [key: string]: string | undefined; }} * @memberof KapacitorAlert */ data: { [key: string]: string | undefined; }; } export declare function KapacitorAlertFromJSON(json: any): KapacitorAlert; export declare function KapacitorAlertFromJSONTyped(json: any, ignoreDiscriminator: boolean): KapacitorAlert; export declare function KapacitorAlertToJSON(value?: KapacitorAlert | null): any;