0

In FHIR 3.x... I have a condition resource and I need to determine how to get to the resolved date.

I read that the field is abatement.abatementDateTime.

I dont see a function to allow to do that.

Any ideas on this?

Lloyd McKenzie
  • 6,345
  • 1
  • 13
  • 10
reza
  • 5,972
  • 15
  • 84
  • 126

1 Answers1

0

The Condition class has a getter called getAbatementDateTimeType() you can use to get that value. It returns a DateTimeType, which has various getters for interacting with the date inside.

James Agnew
  • 701
  • 4
  • 3