RetailVisitInformation

data class RetailVisitInformation(visitReason: String, patientDeclaration: PatientDeclaration, userEmail: String, contactPhoneNumber: String, actorRelationshipToPatient: RelationshipToPatient?, patientQuestions: List<PatientQuestion>?) : Parcelable

An object containing additional information required to schedule a retail visit.

Parameters

visitReason

A short description describing the reason for scheduling the retail visit.

patientDeclaration

An enum used to determine who the visit should be scheduled for.

userEmail

This should always be a non-empty email address which can be used to contact the app user. Note: the patient email address as returned by Epic is not guaranteed to be present. For this reason, it is recommended to always collect this information from an alternative source, e.g. Auth0 email.

contactPhoneNumber

A phone number that can be used to communicate with the patient.

actorRelationshipToPatient
patientQuestions

An optional list of PatientQuestion that will be passed through to the Epic appointment record.

Constructors

RetailVisitInformation
Link copied to clipboard
fun RetailVisitInformation(visitReason: String, patientDeclaration: PatientDeclaration, userEmail: String, contactPhoneNumber: String, actorRelationshipToPatient: RelationshipToPatient? = null, patientQuestions: List<PatientQuestion>? = null)
A short description describing the reason for scheduling the retail visit.

Functions

describeContents
Link copied to clipboard
abstract fun describeContents(): Int
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

actorRelationshipToPatient
Link copied to clipboard
val actorRelationshipToPatient: RelationshipToPatient? = null
contactPhoneNumber
Link copied to clipboard
val contactPhoneNumber: String
A phone number that can be used to communicate with the patient.
departmentId
Link copied to clipboard
var departmentId: String
Set and used internally by the SDK
ehrSystem
Link copied to clipboard
var ehrSystem: String
Set and used internally by the SDK
patientDeclaration
Link copied to clipboard
val patientDeclaration: PatientDeclaration
An enum used to determine who the visit should be scheduled for.
patientQuestions
Link copied to clipboard
val patientQuestions: List<PatientQuestion>? = null
An optional list of PatientQuestion that will be passed through to the Epic appointment record.
providerId
Link copied to clipboard
var providerId: String
Set and used internally by the SDK
slotId
Link copied to clipboard
var slotId: String
Set and used internally by the SDK
userEmail
Link copied to clipboard
val userEmail: String
This should always be a non-empty email address which can be used to contact the app user.
visitReason
Link copied to clipboard
val visitReason: String
A short description describing the reason for scheduling the retail visit.