2017-12-19 13:53:46 +01:00
|
|
|
export class ProjectInfo {
|
2018-03-16 16:56:35 +01:00
|
|
|
id:string;
|
2017-12-19 13:53:46 +01:00
|
|
|
acronym: string;
|
|
|
|
title: string;
|
|
|
|
callIdentifier: string;
|
|
|
|
funder: string;
|
|
|
|
funding: string;
|
|
|
|
contractNum: string;
|
|
|
|
startDate: string;
|
|
|
|
endDate: string;
|
2018-10-23 15:11:25 +02:00
|
|
|
openAccessMandatePublications: string;
|
|
|
|
openAccessMandateDatasets: string;
|
2017-12-19 13:53:46 +01:00
|
|
|
specialClause39: string;
|
|
|
|
organizations: { "acronym": string, "name": string, "id": string }[];//Map<string, string>;
|
|
|
|
url: string;
|
|
|
|
urlInfo: string;
|
|
|
|
|
|
|
|
//publications: any;
|
|
|
|
researchData: any;
|
|
|
|
statistics: any;
|
|
|
|
|
|
|
|
totalPublications: number;
|
|
|
|
totalDatasets: number;
|
|
|
|
publicationsStatus: any;
|
|
|
|
}
|