Package org. dexcare. services. patient. models
Types
DexCarePatient
Link copied to clipboard
data class DexCarePatient(documents: List<String>?, patientGuid: String, identifiers: List<Identifier>, demographicsLinks: List<PatientDemographics>, relationshipToPatient: RelationshipToPatient?) : Patient, Parcelable
Content copied to clipboard
EhrPatient
Link copied to clipboard
class EhrPatient(firstName: String, lastName: String, gender: Gender, dateOfBirth: LocalDate, phone: String, email: String, address: Address, ehrIdentifier: String, ehrIdentifierType: String, homeEhr: String, homeMarket: String?, relationshipToPatient: RelationshipToPatient?) : Patient
Content copied to clipboard
A Patient that represents an existing patient in Epic, but not DexCare.
Gender
Link copied to clipboard
PatientDemographics
Link copied to clipboard
data class PatientDemographics(addresses: List<Address>, birthdate: LocalDate, email: String, gender: Gender, name: HumanName, last4SSN: String, homePhone: String?, workPhone: String, mobilePhone: String, identifiers: MutableList<Identifier>) : Parcelable
Content copied to clipboard