The details of an appointment.

Appointment

interface ServicesApiModelAppointment {
    appointmentId?: string;
    appointmentStatus?:
        | "CANCELLED"
        | "ACTIVE"
        | ServicesApiModelAppointmentAppointmentStatusEnum
        | "COMPLETED";
    appointmentTime?: ServicesApiModelAppointmentTime;
    assignedTechnicians?: ServicesApiModelTechnician[];
    poa?: ServicesApiModelPoa;
    rescheduledAppointmentId?: string;
}

Properties

appointmentId?: string

The appointment identifier.

Appointment

appointmentStatus?:
    | "CANCELLED"
    | "ACTIVE"
    | ServicesApiModelAppointmentAppointmentStatusEnum
    | "COMPLETED"

The status of the appointment.

Appointment

Appointment

assignedTechnicians?: ServicesApiModelTechnician[]

A list of technicians assigned to the service job.

Appointment

Appointment

rescheduledAppointmentId?: string

The appointment identifier.

Appointment

MMNEPVFCICPMFPCPTTAAATR