src/app/modules/dashboard/interfaces/dataset.ts
Properties |
|
| dataAvailableFrom |
dataAvailableFrom:
|
Type : string
|
| dataDictionary |
dataDictionary:
|
Type : string
|
| Optional |
| datasetFields |
datasetFields:
|
Type : any
|
| Optional |
| datasetId |
datasetId:
|
Type : string
|
| downloadFormats |
downloadFormats:
|
Type : string[]
|
| examples |
examples:
|
Type : string
|
| Optional |
| granularity |
granularity:
|
Type : string
|
| Optional |
| lastUpdatedOn |
lastUpdatedOn:
|
Type : string
|
| Optional |
| months |
months:
|
Type : number
|
| Optional |
| type |
type:
|
Type : string
|
| Optional |
export interface IDataset {
datasetId: string;
examples?: string;
dataDictionary?: string;
granularity?: string;
lastUpdatedOn?: string;
type?: string;
downloadFormats: string[];
months?: number;
datasetFields?: any;
dataAvailableFrom: string;
}