AppointmentDetails

data class AppointmentDetails(appointmentId: String, endDateTime: ZonedDateTime, slotId: String, startDateTime: ZonedDateTime, timezone: ZoneId) : Parcelable

Contains details about a specific ScheduledVisit appointment.

See also

Constructors

AppointmentDetails
Link copied to clipboard
fun AppointmentDetails(appointmentId: String, endDateTime: ZonedDateTime, slotId: String, startDateTime: ZonedDateTime, timezone: ZoneId)

Functions

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

Properties

appointmentId
Link copied to clipboard
val appointmentId: String
A unique identifier representing this appointment
endDateTime
Link copied to clipboard
val endDateTime: ZonedDateTime
The end time of the appointment
slotId
Link copied to clipboard
val slotId: String
An encoded representation of the appointment's time slot
startDateTime
Link copied to clipboard
val startDateTime: ZonedDateTime
The start time of the appointment
timezone
Link copied to clipboard
val timezone: ZoneId
The timezone the appointment is scheduled in