export type Place = { address: { en: string fr: string } comment: string createdAt: string description: { en: string fr: string } destinationsIds: string[] // provide relationship destinations googlePlaceId: string gpslatitude: string gpslongitude: string housesIds: string[] // provide relationship houses 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 } }