DexCarePatient

data class DexCarePatient(patientGuid: String, identifiers: List<Identifier>, demographicsLinks: List<PatientDemographics>) : Parcelable

Contains information about the current authenticated user.

Constructors

DexCarePatient
Link copied to clipboard
fun DexCarePatient(patientGuid: String, identifiers: List<Identifier>, demographicsLinks: List<PatientDemographics>)

Functions

describeContents
Link copied to clipboard
abstract fun describeContents(): Int
getDemographicsForEhr
Link copied to clipboard
fun getDemographicsForEhr(ehrSystemName: String): PatientDemographics?
Gets the particular PatientDemographics instance for a given ehrSystemName, or null if it does not exist.
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

demographicsLinks
Link copied to clipboard
val demographicsLinks: List<PatientDemographics>
A list of PatientDemographics associated with this patient.
identifiers
Link copied to clipboard
val identifiers: List<Identifier>
A list of Identifier associated with this patient.
patientGuid
Link copied to clipboard
val patientGuid: String
A unique identifier representing this patient.