604605606607608609610611
* <b>Definition:</b> * * </p> */ public AppointmentResponse setEndWithMillisPrecision( Date theDate) { myEnd = new InstantDt(theDate); return this; }
617618619620621622623624
* <b>Definition:</b> * * </p> */ public AppointmentResponse setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new InstantDt(theDate, thePrecision); return this; }
292293294295296297298299300
* The instant of time at which the activity was recorded * </p> */ public InstantDt getRecorded() { if (myRecorded == null) { myRecorded = new InstantDt(); } return myRecorded; }
319320321322323324325326
* <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; }
332333334335336337338339
* <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; }
228522862287228822892290229122922293
* * </p> */ public InstantDt getTimestamp() { if (myTimestamp == null) { myTimestamp = new InstantDt(); } return myTimestamp; }
23122313231423152316231723182319
* <b>Definition:</b> * * </p> */ public Expansion setTimestampWithMillisPrecision( Date theDate) { myTimestamp = new InstantDt(theDate); return this; }
23252326232723282329233023312332
* <b>Definition:</b> * * </p> */ public Expansion setTimestamp( Date theDate, TemporalPrecisionEnum thePrecision) { myTimestamp = new InstantDt(theDate, thePrecision); return this; }
932933934935936937938939940
* When the document reference was created * </p> */ public InstantDt getIndexed() { if (myIndexed == null) { myIndexed = new InstantDt(); } return myIndexed; }
959960961962963964965966
* <b>Definition:</b> * When the document reference was created * </p> */ public DocumentReference setIndexedWithMillisPrecision( Date theDate) { myIndexed = new InstantDt(theDate); return this; }