440441442443444445446447
* <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; }
453454455456457458459460
* <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; }
470471472473474475476477478
* 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; }
497498499500501502503504
* <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; }
510511512513514515516517
* <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; }
523524525526527528529530
* <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; }
360361362363364365366367368
* How long each repetition should last * </p> */ public DecimalDt getDuration() { if (myDuration == null) { myDuration = new DecimalDt(); } return myDuration; }
387388389390391392393394
* <b>Definition:</b> * How long each repetition should last * </p> */ public Repeat setDuration( long theValue) { myDuration = new DecimalDt(theValue); return this; }
400401402403404405406407
* <b>Definition:</b> * How long each repetition should last * </p> */ public Repeat setDuration( double theValue) { myDuration = new DecimalDt(theValue); return this; }
413414415416417418419420
* <b>Definition:</b> * How long each repetition should last * </p> */ public Repeat setDuration( java.math.BigDecimal theValue) { myDuration = new DecimalDt(theValue); return this; }