Skip to content

Commit

Permalink
PatientBirthDate and PatientAge are Optional
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Jul 28, 2024
1 parent 1e73249 commit fbeb734
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/aiochris/models/logged_in.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ class PACSFile(File):
id: PacsFileId
PatientID: str
PatientName: str
PatientBirthDate: str
PatientAge: int
PatientBirthDate: Optional[str]
PatientAge: Optional[int]
PatientSex: str
StudyDate: str # TODO deserialize
StudyDate: str
AccessionNumber: str
Modality: str
ProtocolName: str
Expand Down

0 comments on commit fbeb734

Please sign in to comment.