Versions Compared

Key

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

Overview


This structure contains the complete set of information about an entry within a Revenue Schedule. The structure is used both to retrieve detailed Revenue Schedule information and to pass information about a Revenue Schedule back to the server to get updated.

Format


Panel
titlePwsRevenueScheduleItem
  • PwsRevenueScheduleItem
    • EndDate: DateTime
    • ScheduledRevenueAmount: Double
    • StartDate: DateTime
    • ContractedMinutes: Int32
    • Notes: String

Elements


Element

Data Type

Required?

Default

Description

Sample Data

EndDate

DateTime



The End Date of the Revenue Schedule Item - only time cards prior to this end date will be included when the revenue bucket is recognized

2018-02-28T00:00:00Z

ScheduledRevenueAmount

Double



The Amount associated with the Revenue Schedule Item

10000

StartDate

DateTime



The Start Date of the Revenue Schedule Item - only time cards after this end date will be included when the revenue bucket is recognized


ContractedMinutes

Int32



The number of Contracted Minutes associated with the Revenue Schedule Item. This field is applicable to service contracts only.

200

Notes

String



Notes associated with the Revenue Schedule Item

February Milestone

Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
                             <PwsRevenueScheduleItem>
                                 <EndDate>2018-02-28T00:00:00Z</EndDate>
                                 <ScheduledRevenueAmount>10000</ScheduledRevenueAmount>
                                 <StartDate>2018-02-01T00:00:00Z</StartDate>
                                 <ContractedMinutes>200</ContractedMinutes>
                                 <Notes>February Milestone</Notes>
                              </PwsRevenueScheduleItem>