Overview
???This data structure represents a project estimate line item. A line item defines, for a given title, the estimated time and revenue associated with the estimate.
Format
Panel | ||
---|---|---|
| ||
|
...
Element | Data Type | Required? | Description |
---|---|---|---|
EstimatedMinutes | Int32The minute | Either EstimatedMinutes or EstimatedRevenue is required | The time estimate on the line item. , expressed in minutes. On save, if estimated revenue is specified but estimated minutes is not, the estimated minutes will be calculated by determining the proper hourly rate based upon the specified title and dividing the specified revenue by the rate. Will fail if rate is zero. |
EstimatedRevenue | Double | Either EstimatedMinutes or EstimatedRevenue is required | The revenue estimate on the line item. . On save, if estimated minutes is specified but estimated revenue is not, the estimated revenue will be calculated by determining the proper hourly rate based upon the specified title and multiplying the specified minutes by the rate. |
Ftes | Int32??? | Yes | The number of full time equivalents. |
TitleIdentity | Yes | This structure represents the unique key fields associated with identifying a resource titleidentifies a title to be associated with the line item. |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
...