The details of an appointment.

Export

Appointment

interface Appointment {
    appointmentId?: string;
    appointmentStatus?: AppointmentAppointmentStatusEnum;
    appointmentTime?: AppointmentTime;
    assignedTechnicians?: Technician[];
    poa?: Poa;
    rescheduledAppointmentId?: string;
}

Properties

appointmentId?: string

The appointment identifier.

Memberof

Appointment

The status of the appointment.

Memberof

Appointment

appointmentTime?: AppointmentTime

Memberof

Appointment

assignedTechnicians?: Technician[]

A list of technicians assigned to the service job.

Memberof

Appointment

poa?: Poa

Memberof

Appointment

rescheduledAppointmentId?: string

The appointment identifier.

Memberof

Appointment