153015311532153315341535153615371538
* The date of birth of the PolicyHolder * </p> */ public DateDt getBirthdate() { if (myBirthdate == null) { myBirthdate = new DateDt(); } return myBirthdate; }
15571558155915601561156215631564
* <b>Definition:</b> * The date of birth of the PolicyHolder * </p> */ public CoverageSubscriber setBirthdateWithDayPrecision( Date theDate) { myBirthdate = new DateDt(theDate); return this; }
15701571157215731574157515761577
* <b>Definition:</b> * The date of birth of the PolicyHolder * </p> */ public CoverageSubscriber setBirthdate( Date theDate, TemporalPrecisionEnum thePrecision) { myBirthdate = new DateDt(theDate, thePrecision); return this; }
259260261262263264265266267
* Date when result of the analysis is updated * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }
286287288289290291292293
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public SequencingAnalysis setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
299300301302303304305306
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public SequencingAnalysis setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateDt(theDate, thePrecision); return this; }
647648649650651652653654655
* Date of expiry of this device (if applicable) * </p> */ public DateDt getExpiry() { if (myExpiry == null) { myExpiry = new DateDt(); } return myExpiry; }
674675676677678679680681
* <b>Definition:</b> * Date of expiry of this device (if applicable) * </p> */ public Device setExpiryWithDayPrecision( Date theDate) { myExpiry = new DateDt(theDate); return this; }
687688689690691692693694
* <b>Definition:</b> * Date of expiry of this device (if applicable) * </p> */ public Device setExpiry( Date theDate, TemporalPrecisionEnum thePrecision) { myExpiry = new DateDt(theDate, thePrecision); return this; }
304305306307308309310311312
* Date when result of the microarray is updated * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }