package org.hl7.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
*
* Coded data, consists of a code, display name, code system,
* and original text. Used when a single code value must be sent.
*
*
* <p>Java class for CV complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="CV">
* <complexContent>
* <restriction base="{urn:hl7-org:v3}CE">
* <sequence>
* <element name="originalText" type="{urn:hl7-org:v3}ED" minOccurs="0"/>
* <element name="translation" type="{urn:hl7-org:v3}CD" maxOccurs="0" minOccurs="0"/>
* </sequence>
* <attribute name="code" type="{urn:hl7-org:v3}cs" />
* <attribute name="codeSystem" type="{urn:hl7-org:v3}uid" />
* <attribute name="codeSystemName" type="{urn:hl7-org:v3}st" />
* <attribute name="codeSystemVersion" type="{urn:hl7-org:v3}st" />
* <attribute name="displayName" type="{urn:hl7-org:v3}st" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CV")
@XmlSeeAlso({
CS.class,
CO.class,
PQR.class
})
public class CV
extends CE
{
/**
*
*/
private static final long serialVersionUID = 1L;
}