/**
* TimeSeriesFlagSources PI_JSON
*/
export interfaceTimeSeriesFlagSourcesResponse {
flagSources?: TimeSeriesFlagSource[];
}
export interfaceTimeSeriesFlagSource {
/**
* the id of the flag
*/
id: string | null;
/**
* Name of the flag
*/
name: string;
}