@starsched/sdk
Version:
ABA clinic control and management service API SDK
14 lines • 462 B
TypeScript
export type AppointmentStatus = 'scheduled' | 'completed' | 'missed_justified' | 'missed_unjustified' | 'cancelled' | 'rescheduled';
export type AppointmentType = 'single';
export type AppointmentProfessional = {
id: string;
name: string;
};
export type Appointment = {
id: string;
scheduledAt: Date;
status: AppointmentStatus;
type: AppointmentType;
professional: AppointmentProfessional;
};
//# sourceMappingURL=appointment.d.ts.map