PwsProjectEstimateLineItem

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

PwsProjectEstimateLineItem
  • PwsProjectEstimateLineItem
    • EstimatedMinutes: Int32
    • EstimatedRevenue: Double
    • Ftes: Int32
    • TitleIdentity: PwsTitleRef

Elements

Element

Data Type

Required?

Description

EstimatedMinutes

Int32

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

PwsTitleRef

Yes

This structure identifies a title to be associated with the line item. 

Usage Example(s)


Example 01