Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 38 Next »

Overview


This structure represents the unique key fields associated with identifying a rate card. Rate Cards define frequently employed rate structures (hourly or daily billing rate per title) used to bill clients. Rate Cards can be identified by RateCardName or RateCardUid. When specifying a PwsRateCardRef as an input to a web service, you may specify one or both the RateCardName and/or RateCardUid. However, if you do specify both, they must both refer to the same rate card or the rate card reference will not be considered valid. When a PwsRateCardRef is returned in the response to a web service, both the RateCardName and RateCardUid will be populated, and guaranteed to refer to a single rate card.

Format


PwsRateCardRef
  • PwsRateCardRef
    • RateCardId: Int32
    • RateCardName: String (50)
    • RateCardType: String (1)
    • RateCardUid: Int64

Elements


Element

Data Type

Required?

Default

Description

Sample Data

RateCardId

Int32

No


The rate card Id is a unique identifier for a rate card. For internal use only.


RateCardName

String (50)

One of RateCardName or RateCardUid is required


The rate card name is a unique identifier for a rate card

USA Rate Card

RateCardType

String (1)

On Insert: Yes

On Update: No


The rate card type:

"C" for cost

"R" for rate

R

RateCardUid

Int64

See RateCardName


A unique and immutable identifier for a rate card

1152921504606860819


Usage Example(s)


Example 01
                     <b:StandardRateCardIdentity>
                        <b:RateCardId i:nil="true"/>
                        <b:RateCardName>USA Rate Card</b:RateCardName>
                        <b:RateCardType>R</b:RateCardType>
                        <b:RateCardUid>1152921504606860819</b:RateCardUid>
                     </b:StandardRateCardIdentity>
  • No labels