export type Appointment = { address: string; atTheProperty: boolean; bookingServiceId: number; categoryName: string | null; city: string; confirmationContentType: string | null; confirmationFilename: string | null; confirmationUrl: string | null; contractId: string; createdAt: string; description: string; endAt: string; endAtTime: string | null; gpslatitude: string | null; gpslongitude: string | null; id: string; imagePath: string | null; name: string; phone: string | null; published: boolean; startAt: string; startAtTime: string | null; type: 'appointment'; updatedAt: string; website: string | null; zipCode: string; };