Resource
Dto used to represent a resource of the workspace.
ResourceDto
type ResourceDto = {
resourceId: string;
firstName: string;
lastName: string;
totalAllocation: number;
email?: string;
};
Properties
Name | Type | Description | Required | Default |
---|---|---|---|---|
resourceId | string (uuid) | Resource id | Yes | - |
firstName | string | Resource first name | Yes | - |
lastName | string | Resource last name | Yes | - |
totalAllocation | number | Total count of allocation of the resource (in hours or days) | No | 0 |
string | Resource email (if the resource ah no account, this will be null) | No | - |