542543544545546547548549550
* * </p> */ public InstantDt getStart() { if (myStart == null) { myStart = new InstantDt(); } return myStart; }
569570571572573574575576
* <b>Definition:</b> * * </p> */ public Appointment setStart( Date theDate, TemporalPrecisionEnum thePrecision) { myStart = new InstantDt(theDate, thePrecision); return this; }
582583584585586587588589
* <b>Definition:</b> * * </p> */ public Appointment setStartWithMillisPrecision( Date theDate) { myStart = new InstantDt(theDate); return this; }
599600601602603604605606607
* * </p> */ public InstantDt getEnd() { if (myEnd == null) { myEnd = new InstantDt(); } return myEnd; }
626627628629630631632633
* <b>Definition:</b> * * </p> */ public Appointment setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new InstantDt(theDate, thePrecision); return this; }
639640641642643644645646
* <b>Definition:</b> * * </p> */ public Appointment setEndWithMillisPrecision( Date theDate) { myEnd = new InstantDt(theDate); return this; }
606607608609610611612613614
633634635636637638639640
* <b>Definition:</b> * * </p> */ public AppointmentResponse setStart( Date theDate, TemporalPrecisionEnum thePrecision) { myStart = new InstantDt(theDate, thePrecision); return this; }
646647648649650651652653
* <b>Definition:</b> * * </p> */ public AppointmentResponse setStartWithMillisPrecision( Date theDate) { myStart = new InstantDt(theDate); return this; }
663664665666667668669670671