Skip to main content

Report

Dto used to represent project report.

ReportDto
type ReportDto = {
projectId: string;
external_id: string;
start_date?: int;
end_date?: int;
totalAllocation: number;
resources: Array<ResourceDto>;
};

Properties

NameTypeDescriptionRequiredDefault
projectIdstring (uuid)Project internal identifierYes-
external_idstringExternal reference to the projectNo-
start_dateintStart date of the reportNo-
end_dateintEnd date of the reportNo-
totalAllocationnumberTotal count of allocation of the project (in hours or days)No0
resourcesArray<ResourceDto>List of resources in the projectNo[]