690691692693694695696697
* <b>Definition:</b> * * </p> */ public AppointmentResponse setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new InstantDt(theDate, thePrecision); return this; }
703704705706707708709710
* <b>Definition:</b> * * </p> */ public AppointmentResponse setEndWithMillisPrecision( Date theDate) { myEnd = new InstantDt(theDate); return this; }
390391392393394395396397398
* The instant of time at which the activity was recorded * </p> */ public InstantDt getRecorded() { if (myRecorded == null) { myRecorded = new InstantDt(); } return myRecorded; }
417418419420421422423424
* <b>Definition:</b> * The instant of time at which the activity was recorded * </p> */ public Provenance setRecorded( Date theDate, TemporalPrecisionEnum thePrecision) { myRecorded = new InstantDt(theDate, thePrecision); return this; }
430431432433434435436437
* <b>Definition:</b> * The instant of time at which the activity was recorded * </p> */ public Provenance setRecordedWithMillisPrecision( Date theDate) { myRecorded = new InstantDt(theDate); return this; }
697071727374757677
/** * Gets the date/time that thius entry was deleted. */ public InstantDt getDeletedAt() { if (myDeletedAt == null) { myDeletedAt = new InstantDt(); } return myDeletedAt; }
111112113114115116117118119
return myLinkSelf; } public InstantDt getPublished() { if (myPublished == null) { myPublished = new InstantDt(); } return myPublished; }
136137138139140141142143144
return myTitle; } public InstantDt getUpdated() { if (myUpdated == null) { myUpdated = new InstantDt(); } return myUpdated; }
139140141142143144145146147
160161162163164165166167168
return myTotalResults; } public InstantDt getUpdated() { if (myUpdated == null) { myUpdated = new InstantDt(); } return myUpdated; }