/** * Bona Iqiniso v3 backend powered by spring boot. * v3.0.0 * BI v3 REST API * Thaste IT * http://www.thaste.org/ * info@thaste.org * License of API * localhost:8080 */ import * as __model from '../model'; export interface Alert { created_by?: string; /** format: date-time */ created_date?: string; id?: string; modified_by?: string; /** format: date-time */ modified_date?: string; reference: string; state?: string; translations?: __model.Translation[]; /** format: int64 */ version?: number; }