riv.ehr.patientsummary._1.SUBJECTOFCAREPERSONIDENTIFICATION Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* Identification information about a person corresponding to
* GPIC 2.015.
*
*
* Java class for SUBJECT_OF_CARE_PERSON_IDENTIFICATION complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SUBJECT_OF_CARE_PERSON_IDENTIFICATION">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}PERSON">
* <sequence>
* <element name="administrativeGenderCode" type="{urn:riv:ehr:patientsummary:1}CS"/>
* <element name="birthOrderNumber" type="{urn:riv:ehr:patientsummary:1}INT" minOccurs="0"/>
* <element name="birthTime" type="{urn:riv:ehr:patientsummary:1}TS"/>
* <element name="deceasedTime" type="{urn:riv:ehr:patientsummary:1}TS" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SUBJECT_OF_CARE_PERSON_IDENTIFICATION", propOrder = {
"administrativeGenderCode",
"birthOrderNumber",
"birthTime",
"deceasedTime"
})
public class SUBJECTOFCAREPERSONIDENTIFICATION
extends PERSON
{
@XmlElement(required = true)
protected CS administrativeGenderCode;
protected INT birthOrderNumber;
@XmlElement(required = true)
protected TS birthTime;
protected TS deceasedTime;
/**
* Gets the value of the administrativeGenderCode property.
*
* @return
* possible object is
* {@link CS }
*
*/
public CS getAdministrativeGenderCode() {
return administrativeGenderCode;
}
/**
* Sets the value of the administrativeGenderCode property.
*
* @param value
* allowed object is
* {@link CS }
*
*/
public void setAdministrativeGenderCode(CS value) {
this.administrativeGenderCode = value;
}
/**
* Gets the value of the birthOrderNumber property.
*
* @return
* possible object is
* {@link INT }
*
*/
public INT getBirthOrderNumber() {
return birthOrderNumber;
}
/**
* Sets the value of the birthOrderNumber property.
*
* @param value
* allowed object is
* {@link INT }
*
*/
public void setBirthOrderNumber(INT value) {
this.birthOrderNumber = value;
}
/**
* Gets the value of the birthTime property.
*
* @return
* possible object is
* {@link TS }
*
*/
public TS getBirthTime() {
return birthTime;
}
/**
* Sets the value of the birthTime property.
*
* @param value
* allowed object is
* {@link TS }
*
*/
public void setBirthTime(TS value) {
this.birthTime = value;
}
/**
* Gets the value of the deceasedTime property.
*
* @return
* possible object is
* {@link TS }
*
*/
public TS getDeceasedTime() {
return deceasedTime;
}
/**
* Sets the value of the deceasedTime property.
*
* @param value
* allowed object is
* {@link TS }
*
*/
public void setDeceasedTime(TS value) {
this.deceasedTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy