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
| Name | Type | Description | Required | Default |
|---|---|---|---|---|
| projectId | string (uuid) | Project internal identifier | Yes | - |
| external_id | string | External reference to the project | No | - |
| start_date | int | Start date of the report | No | - |
| end_date | int | End date of the report | No | - |
| totalAllocation | number | Total count of allocation of the project (in hours or days) | No | 0 |
| resources | Array<ResourceDto> | List of resources in the project | No | [] |