ProviderDepartment

data class ProviderDepartment(departmentId: String, ehrSystemName: String, name: String, center: String?, phone: String?, address: Address?) : Parcelable

A physical building that provides service of one or more health-care providers.

Constructors

ProviderDepartment
Link copied to clipboard
fun ProviderDepartment(departmentId: String, ehrSystemName: String, name: String, center: String? = null, phone: String? = null, address: Address? = null)

Functions

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

Properties

address
Link copied to clipboard
val address: Address? = null
The address of this department.
center
Link copied to clipboard
val center: String? = null
If applicable, the medical center in which this department resides.
departmentId
Link copied to clipboard
val departmentId: String
A unique identifier representing this department.
ehrSystemName
Link copied to clipboard
val ehrSystemName: String
The EHR System name for this department.
name
Link copied to clipboard
val name: String
The plaintext name of this department.
phone
Link copied to clipboard
val phone: String? = null
The phone number for this department.