366367368369370371372373374
* The percent of the service fee which would be elegible for coverage * </p> */ public DecimalDt getRate() { if (myRate == null) { myRate = new DecimalDt(); } return myRate; }
393394395396397398399400
* <b>Definition:</b> * The percent of the service fee which would be elegible for coverage * </p> */ public Service setRate( double theValue) { myRate = new DecimalDt(theValue); return this; }
406407408409410411412413
* <b>Definition:</b> * The percent of the service fee which would be elegible for coverage * </p> */ public Service setRate( java.math.BigDecimal theValue) { myRate = new DecimalDt(theValue); return this; }
419420421422423424425426
* <b>Definition:</b> * The percent of the service fee which would be elegible for coverage * </p> */ public Service setRate( long theValue) { myRate = new DecimalDt(theValue); return this; }
436437438439440441442443444
* The amount payable for a submitted service (includes both professional and lab fees.) * </p> */ public DecimalDt getBenefit() { if (myBenefit == null) { myBenefit = new DecimalDt(); } return myBenefit; }
463464465466467468469470
* <b>Definition:</b> * The amount payable for a submitted service (includes both professional and lab fees.) * </p> */ public Service setBenefit( double theValue) { myBenefit = new DecimalDt(theValue); return this; }
476477478479480481482483
* <b>Definition:</b> * The amount payable for a submitted service (includes both professional and lab fees.) * </p> */ public Service setBenefit( java.math.BigDecimal theValue) { myBenefit = new DecimalDt(theValue); return this; }
489490491492493494495496
* <b>Definition:</b> * The amount payable for a submitted service (includes both professional and lab fees.) * </p> */ public Service setBenefit( long theValue) { myBenefit = new DecimalDt(theValue); return this; }
350351352353354355356357358
* How long each repetition should last * </p> */ public DecimalDt getDuration() { if (myDuration == null) { myDuration = new DecimalDt(); } return myDuration; }
377378379380381382383384
* <b>Definition:</b> * How long each repetition should last * </p> */ public Repeat setDuration( double theValue) { myDuration = new DecimalDt(theValue); return this; }