Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This structure contains the complete set of information about a project role rate type (less any subordinate entities). The structure is used both to retrieve detailed project role rate type information and to pass information about a project role rate type back to the server to get updated.

...

Panel
titlePwsProjectRateTypeDetail
  • PwsProjectRateTypeDetail
    • ExternalSystemIdentifier: String
    • ProjectRateTypeId: Int32
    • ProjectRateTypeUid: Int64
    • ProjectRateTypeName: String (50)
    • BillingAdjustedDiscountPercent: Double
    • BillingAdjustedHourlyRate: Double
    • ContractDiscountPercent: Double
    • ContractHourlyRate: Double
    • SortOrder: Int16
    • StandardRateTypeIdentity: PwsStandardRateTypeRef

Elements

Element

Data Type

Required?

Default

Description

Sample Data

ExternalSystemIdentifier

String

 

 

 

 





ProjectRateTypeId

Int32

 

 

 

 





ProjectRateTypeUid

Int64

 

 

 

 





ProjectRateTypeName

String

 

 

 

 

(50)





BillingAdjustedDiscountPercent

Double

 

 

 

 





BillingAdjustedHourlyRate

Double

 

 

 

 





ContractDiscountPercent

Double

 

 

 

 





ContractHourlyRate

Double

 

 

 

 





SortOrder

Int16

 

 

 

 





StandardRateTypeIdentity

PwsStandardRateTypeRef

 

 

 

 





Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
   <b:ProjectRateTypeDetail>
      <b:ExternalSystemIdentifier i:nil="true"/>
      <b:ProjectRateTypeId i:nil="true"/>
      <b:ProjectRateTypeUid>1152921504606922399</b:ProjectRateTypeUid>
      <b:ProjectRateTypeName>Regular</b:ProjectRateTypeName>
      <b:BillingAdjustedDiscountPercent i:nil="true"/>
      <b:BillingAdjustedHourlyRate i:nil="true"/>
      <b:ContractDiscountPercent i:nil="true"/>
      <b:ContractHourlyRate i:nil="true"/>
      <b:SortOrder>1</b:SortOrder>
      <b:StandardRateTypeIdentity>
         <b:StandardRateTypeCode>Reg</b:StandardRateTypeCode>
         <b:StandardRateTypeId i:nil="true"/>
         <b:StandardRateTypeName>Regular</b:StandardRateTypeName>
         <b:StandardRateTypeUid>1152921504606847191</b:StandardRateTypeUid>
      </b:StandardRateTypeIdentity>
   </b:ProjectRateTypeDetail>

...