Repository URL to install this package:
|
Version:
4.0.0 ▾
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Generated from FHIR 4.0.0-a53ec6ee1b (http://hl7.org/fhir/StructureDefinition/Coding) on 2019-05-07.
# 2019, SMART Health IT.
from . import element
class Coding(element.Element):
""" A reference to a code defined by a terminology system.
"""
resource_type = "Coding"
def __init__(self, jsondict=None, strict=True):
""" Initialize all valid properties.
:raises: FHIRValidationError on validation errors, unless strict is False
:param dict jsondict: A JSON dictionary to use for initialization
:param bool strict: If True (the default), invalid variables will raise a TypeError
"""
self.code = None
""" Symbol in syntax defined by the system.
Type `str`. """
self.display = None
""" Representation defined by the system.
Type `str`. """
self.system = None
""" Identity of the terminology system.
Type `str`. """
self.userSelected = None
""" If this coding was chosen directly by the user.
Type `bool`. """
self.version = None
""" Version of the system - if relevant.
Type `str`. """
super(Coding, self).__init__(jsondict=jsondict, strict=strict)
def elementProperties(self):
js = super(Coding, self).elementProperties()
js.extend([
("code", "code", str, False, None, False),
("display", "display", str, False, None, False),
("system", "system", str, False, None, False),
("userSelected", "userSelected", bool, False, None, False),
("version", "version", str, False, None, False),
])
return js