/**
 * FHIR Coding
 * https://www.hl7.org/fhir/datatypes.html#Coding
 * A reference to a code defined by a terminology system.
 */
export interface Coding {
    /**
     * The identification of the code system that defines the meaning of the symbol.
     * FHIR Path: Coding.system
     * Cardinality: 0..1 (optional)
     * Type: uri
     */
    system?: string;
    /**
     * The version of the code system which was used when choosing this code.
     * FHIR Path: Coding.version
     * Cardinality: 0..1 (optional)
     * Type: string
     */
    version?: string;
    /**
     * A symbol in syntax defined by the system.
     * FHIR Path: Coding.code
     * Cardinality: 0..1 (optional)
     * Type: code
     */
    code?: string;
    /**
     * Representation defined by the system.
     * FHIR Path: Coding.display
     * Cardinality: 0..1 (optional)
     * Type: string
     */
    display?: string;
    /**
     * If this coding was chosen directly by the user.
     * FHIR Path: Coding.userSelected
     * Cardinality: 0..1 (optional)
     * Type: boolean
     */
    userSelected?: boolean;
}
//# sourceMappingURL=Coding.d.ts.map