openimis/openimis-be-api_fhir_py

View on GitHub
api_fhir/models/annotation.py

Summary

Maintainability
A
0 mins
Test Coverage
from api_fhir.models import Element, Property


class Annotation(Element):

    authorReference = Property('authorReference', 'Reference')
    authorString = Property('authorString', str)
    text = Property('text', str)
    time = Property('time', 'FHIRDate')