dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app/utils/entities/projectInfo.ts @ 53559
1 |
export class ProjectInfo { |
---|---|
2 |
id:string; |
3 |
acronym: string; |
4 |
title: string; |
5 |
callIdentifier: string; |
6 |
funder: string; |
7 |
funding: string; |
8 |
contractNum: string; |
9 |
startDate: string; |
10 |
endDate: string; |
11 |
openAccessMandatePublications: string; |
12 |
openAccessMandateDatasets: string; |
13 |
specialClause39: string; |
14 |
organizations: { "acronym": string, "name": string, "id": string }[];//Map<string, string>; |
15 |
url: string; |
16 |
urlInfo: string; |
17 |
|
18 |
//publications: any;
|
19 |
researchData: any; |
20 |
statistics: any; |
21 |
|
22 |
totalPublications: number; |
23 |
totalDatasets: number; |
24 |
publicationsStatus: any; |
25 |
}
|