/** * 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 AlertPartialUpdate */ export interface AlertPartialUpdate { /** * * @type {string} * @memberof AlertPartialUpdate */ name?: string; /** * * @type {string} * @memberof AlertPartialUpdate */ message?: string; /** * * @type {string} * @memberof AlertPartialUpdate */ level?: string; /** * * @type {boolean} * @memberof AlertPartialUpdate */ isOpen?: boolean; /** * * @type {Date} * @memberof AlertPartialUpdate */ closedAt?: Date | null; } export declare function AlertPartialUpdateFromJSON(json: any): AlertPartialUpdate; export declare function AlertPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AlertPartialUpdate; export declare function AlertPartialUpdateToJSON(value?: AlertPartialUpdate | null): any;