ProviderVisitType

data class ProviderVisitType(visitTypeId: String, name: String, description: String?, shortName: VisitTypeShortName?) : Parcelable

Represents a particular type of visit supported by a Provider.

Constructors

ProviderVisitType
Link copied to clipboard
fun ProviderVisitType(visitTypeId: String, name: String, description: String? = null, shortName: VisitTypeShortName? = null)

Functions

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

Properties

description
Link copied to clipboard
val description: String? = null
Additional information describing this visit type.
name
Link copied to clipboard
val name: String
The plaintext name of this visit type.
shortName
Link copied to clipboard
val shortName: VisitTypeShortName? = null
The short name of this visit type.
visitTypeId
Link copied to clipboard
val visitTypeId: String
A unique identifier representing this visit type.