PatientQuestion

data class PatientQuestion(question: String, answer: String) : Parcelable

A generic Question + Answer object that can be used to pass additional information into the Epic appointment record.

Parameters

question

A string representing a question

answer

A string representing an answer

Constructors

PatientQuestion
Link copied to clipboard
fun PatientQuestion(question: String, answer: String)
A string representing a question

Functions

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

Properties

answer
Link copied to clipboard
val answer: String
A string representing an answer
question
Link copied to clipboard
val question: String
A string representing a question