export type Place = { address: { en: string; fr: string; }; comment: string; createdAt: string; description: { en: string; fr: string; }; destinationsIds: string[]; googlePlaceId: string; gpslatitude: string; gpslongitude: string; housesIds: string[]; id: string; name: { en: string; fr: string; }; phone: string; placeTypeId: number; updatedAt: string; vamoosId: number; websiteUrl: string; }; export type PlacePayload = { place: { address_en?: string; address_fr?: string; comment?: string; google_place_id?: string; google_rating?: string; gpslatitude?: string; gpslongitude?: string; name_en?: string; name_fr?: string; phone?: string; place_type_id?: number; website_url?: string; }; };