org.opencds.cqf.tooling.vmr.UndeliveredSubstanceAdministration Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.06.24 at 08:44:29 AM MDT
//
package org.opencds.cqf.tooling.vmr;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Documents the non-delivery of a substance. E.g., documents that an influenza immunization was not given because the patient refused or had an adverse reaction to a previous flu vaccine.
*
* Java class for UndeliveredSubstanceAdministration complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UndeliveredSubstanceAdministration">
* <complexContent>
* <extension base="{urn:hl7-org:vmr:r2}SubstanceClinicalStatementBase">
* <sequence>
* <element name="reason" type="{urn:hl7-org:cdsdt:r2}CD" minOccurs="0"/>
* <element name="subjectEffectiveTime" type="{urn:hl7-org:cdsdt:r2}IVL_TS" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UndeliveredSubstanceAdministration", propOrder = {
"reason",
"subjectEffectiveTime"
})
public class UndeliveredSubstanceAdministration
extends SubstanceClinicalStatementBase
{
protected CD reason;
protected IVLTS subjectEffectiveTime;
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setReason(CD value) {
this.reason = value;
}
/**
* Gets the value of the subjectEffectiveTime property.
*
* @return
* possible object is
* {@link IVLTS }
*
*/
public IVLTS getSubjectEffectiveTime() {
return subjectEffectiveTime;
}
/**
* Sets the value of the subjectEffectiveTime property.
*
* @param value
* allowed object is
* {@link IVLTS }
*
*/
public void setSubjectEffectiveTime(IVLTS value) {
this.subjectEffectiveTime = value;
}
}