754755756757758759760761762
* The date that this version of the profile was published * </p> */ public DateTimeDt getDate() { if (myDate == null) { myDate = new DateTimeDt(); } return myDate; }
781782783784785786787788
* <b>Definition:</b> * The date that this version of the profile was published * </p> */ public Profile setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
794795796797798799800801
* <b>Definition:</b> * The date that this version of the profile was published * </p> */ public Profile setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
737738739740741742743744745
* * </p> */ public DateTimeDt getRecordedDate() { if (myRecordedDate == null) { myRecordedDate = new DateTimeDt(); } return myRecordedDate; }
764765766767768769770771
* <b>Definition:</b> * * </p> */ public AppointmentResponse setRecordedDate( Date theDate, TemporalPrecisionEnum thePrecision) { myRecordedDate = new DateTimeDt(theDate, thePrecision); return this; }
777778779780781782783784
* <b>Definition:</b> * * </p> */ public AppointmentResponse setRecordedDateWithSecondsPrecision( Date theDate) { myRecordedDate = new DateTimeDt(theDate); return this; }
508509510511512513514515516
* When to stop repeating the schedule * </p> */ public DateTimeDt getEnd() { if (myEnd == null) { myEnd = new DateTimeDt(); } return myEnd; }
535536537538539540541542
* <b>Definition:</b> * When to stop repeating the schedule * </p> */ public Repeat setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new DateTimeDt(theDate, thePrecision); return this; }
548549550551552553554555
* <b>Definition:</b> * When to stop repeating the schedule * </p> */ public Repeat setEndWithSecondsPrecision( Date theDate) { myEnd = new DateTimeDt(theDate); return this; }
425426427428429430431432433
* * </p> */ public DateTimeDt getAuthorDate() { if (myAuthorDate == null) { myAuthorDate = new DateTimeDt(); } return myAuthorDate; }