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/Reference) on 2019-05-07.
# 2019, SMART Health IT.
from . import element
class Reference(element.Element):
""" A reference from one resource to another.
"""
resource_type = "Reference"
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.display = None
""" Text alternative for the resource.
Type `str`. """
self.identifier = None
""" Logical reference, when literal reference is not known.
Type `Identifier` (represented as `dict` in JSON). """
self.reference = None
""" Literal reference, Relative, internal or absolute URL.
Type `str`. """
self.type = None
""" Type the reference refers to (e.g. "Patient").
Type `str`. """
super(Reference, self).__init__(jsondict=jsondict, strict=strict)
def elementProperties(self):
js = super(Reference, self).elementProperties()
js.extend([
("display", "display", str, False, None, False),
("identifier", "identifier", identifier.Identifier, False, None, False),
("reference", "reference", str, False, None, False),
("type", "type", str, False, None, False),
])
return js
import sys
try:
from . import identifier
except ImportError:
identifier = sys.modules[__package__ + '.identifier']