This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "HospitalAssistantBackend"
|
name = "HospitalAssistantBackend"
|
||||||
version = "1.5.3"
|
version = "1.5.4"
|
||||||
description = "Backend for Hospital Assistant"
|
description = "Backend for Hospital Assistant"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.13,<3.14"
|
requires-python = ">=3.13,<3.14"
|
||||||
|
|||||||
@ -40,8 +40,8 @@ NS = 'urn:hl7-org:v3'
|
|||||||
|
|
||||||
|
|
||||||
class TextElement(BaseXmlModel, tag='text', ns=NS):
|
class TextElement(BaseXmlModel, tag='text', ns=NS):
|
||||||
representation: str = attr()
|
representation: str | None = attr(default=None)
|
||||||
media_type: str = attr(name='mediaType')
|
media_type: str | None = attr(name='mediaType', default=None)
|
||||||
content: str
|
content: str
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user