AbstractPatientHistoryItemHistoryDto Data Type

This is an abstract model of patient history item history and, currently, sub models extending it are as follows:

This model will set the name depending on the sub models automatically and the names are as follows:

Abstract Type
Subtypes
PatientHistoryTextHistoryDto, PatientHistoryRegularHistoryDto, PatientHistoryUrlHistoryDto, PatientHistoryTrackingHistoryDto
Properties
name data type constraints description
id number required The unique id of the patient history history record.
patientId number required The unique id of the patient who owns the history record.
maskId number   If the record is masked in Accuro, this value will hold the mask id, null otherwise.
modifiedDate string   The date this patient history item was modified.

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "id" : 1,
  "patientId" : 1,
  "maskId" : 1,
  "modifiedDate" : "2018-07-13"
}