951952953954955956957958
* <b>Definition:</b> * A flag that indicates whether the application accepts unknown elements as part of a resource. * </p> */ public Conformance setAcceptUnknown( boolean theBoolean) { myAcceptUnknown = new BooleanDt(theBoolean); return this; }
111811191120112111221123112411251126
* Indicator that the user is or is not the requestor, or initiator, for the event being audited. * </p> */ public BooleanDt getRequestor() { if (myRequestor == null) { myRequestor = new BooleanDt(); } return myRequestor; }
11451146114711481149115011511152
* <b>Definition:</b> * Indicator that the user is or is not the requestor, or initiator, for the event being audited. * </p> */ public Participant setRequestor( boolean theBoolean) { myRequestor = new BooleanDt(theBoolean); return this; }
151015111512151315141515151615171518
* Self-reported indicator * </p> */ public BooleanDt getReported() { if (myReported == null) { myReported = new BooleanDt(); } return myReported; }
15371538153915401541154215431544
* <b>Definition:</b> * Self-reported indicator * </p> */ public Reaction setReported( boolean theBoolean) { myReported = new BooleanDt(theBoolean); return this; }
592593594595596597598599600
* Indicates if the vaccination was refused. * </p> */ public BooleanDt getRefusedIndicator() { if (myRefusedIndicator == null) { myRefusedIndicator = new BooleanDt(); } return myRefusedIndicator; }
619620621622623624625626
* <b>Definition:</b> * Indicates if the vaccination was refused. * </p> */ public Immunization setRefusedIndicator( boolean theBoolean) { myRefusedIndicator = new BooleanDt(theBoolean); return this; }
636637638639640641642643644
* True if this administration was reported rather than directly administered. * </p> */ public BooleanDt getReported() { if (myReported == null) { myReported = new BooleanDt(); } return myReported; }
663664665666667668669670
* <b>Definition:</b> * True if this administration was reported rather than directly administered. * </p> */ public Immunization setReported( boolean theBoolean) { myReported = new BooleanDt(theBoolean); return this; }
327328329330331332333334335
* Set this to true if the record is saying that the medication was NOT taken. * </p> */ public BooleanDt getWasNotGiven() { if (myWasNotGiven == null) { myWasNotGiven = new BooleanDt(); } return myWasNotGiven; }