...
This structure represents a project task and its associated schedule for a given time buckettask hours for a role for a given week, according to the active task baseline, or the current task plan, if none.
Format
Panel | ||
---|---|---|
| ||
|
...
Element | Data Type | Description | Sample |
---|---|---|---|
BucketStartDate | DateTime | The start date first day of the task bucketweek represented by this bucket. Always the first day of a week as configured by the account's first day of week setting. | 2020-01-06T00:00:00Z |
PlannedTaskEffortDailyMinutes | Double[] | The planned task effort minutes in association with the bucket. Indexed relative to the account's first day of week setting. | |
RemainingTaskEffortDailyMinutes | Double[] | The remaining task effort daily minutes in association with the bucketĀ the bucket. Indexed relative to the account's first day of week setting. |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<b:PwsProjectRoleTaskHoursBucket> <b:BucketStartDate>2020-01-06T00:00:00Z</b:BucketStartDate> <b:PlannedTaskEffortDailyMinutes xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <c:double>480</c:double> <c:double>480</c:double> <c:double>480</c:double> <c:double>480</c:double> <c:double>480</c:double> <c:double>0</c:double> <c:double>0</c:double> </b:PlannedTaskEffortDailyMinutes> <b:RemainingTaskEffortDailyMinutes xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <c:double>480</c:double> <c:double>480</c:double> <c:double>480</c:double> <c:double>480</c:double> <c:double>480</c:double> <c:double>0</c:double> <c:double>0</c:double> </b:RemainingTaskEffortDailyMinutes> </b:PwsProjectRoleTaskHoursBucket> |
...