Package org.dexcare.services.patient.models

Types

Address
Link copied to clipboard
data class Address(line1: String, line2: String?, city: String, state: String, postalCode: String) : Parcelable
A representation of an address.
DexCarePatient
Link copied to clipboard
data class DexCarePatient(patientGuid: String, identifiers: List<Identifier>, demographicsLinks: List<PatientDemographics>) : Parcelable
Contains information about the current authenticated user.
Gender
Link copied to clipboard
enum Gender : Enum<Gender> , Parcelable
HumanName
Link copied to clipboard
data class HumanName(family: String, given: String, middle: String, prefix: String, suffix: String, use: String) : Parcelable
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
Represents a set of demographics for a patient, in a single EHR system.