Project

General

Profile

1
export class ProjectInfo {
2
    id:string;
3
    acronym: string;
4
    title: string;
5

    
6
    funding: {funderName: string, funderShortName: string, code: string, callIdentifier: string,
7
      fundingStream: string, budget: string, contribution: string, currency: string};
8
    startDate: number;
9
    endDate: number;
10
    currentDate: number;
11
    status: string;
12
    openAccessMandatePublications: string;
13
    openAccessMandateDatasets: string;
14
    specialClause39: string;
15
    organizations: { "acronym": string, "name": string, "id": string }[];//Map<string, string>;
16
    url: string;
17
    urlInfo: string;
18
    description: string;
19
    //publications: any;
20
    researchData: any;
21

    
22
    totalPublications: number;
23
    totalDatasets: number;
24
    publicationsStatus: any;
25
}
(10-10/13)