/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Web4Ai API * OpenAPI spec version: 0.1.0 */ import type { PlaceCategory } from "./placeCategory"; import type { PlaceStatus } from "./placeStatus"; import type { PlaceDataOwnerUserId } from "./placeDataOwnerUserId"; import type { PlaceDataExternalSource } from "./placeDataExternalSource"; import type { PlaceDataExternalPlaceId } from "./placeDataExternalPlaceId"; import type { PlaceDataRoadAddress } from "./placeDataRoadAddress"; import type { PlaceDataAddress } from "./placeDataAddress"; import type { PlaceDataPhone } from "./placeDataPhone"; import type { PlaceDataLatitude } from "./placeDataLatitude"; import type { PlaceDataLongitude } from "./placeDataLongitude"; import type { PlaceDataRegionCode } from "./placeDataRegionCode"; import type { PlaceDataVerifiedAt } from "./placeDataVerifiedAt"; import type { PlaceDataContentUpdatedAt } from "./placeDataContentUpdatedAt"; import type { PlaceDataNotifyEmail } from "./placeDataNotifyEmail"; import type { PlaceDataCreatedAt } from "./placeDataCreatedAt"; export interface PlaceData { place_id: string; name: string; category: PlaceCategory; status: PlaceStatus; owner_user_id?: PlaceDataOwnerUserId; external_source?: PlaceDataExternalSource; external_place_id?: PlaceDataExternalPlaceId; road_address?: PlaceDataRoadAddress; address?: PlaceDataAddress; phone?: PlaceDataPhone; latitude?: PlaceDataLatitude; longitude?: PlaceDataLongitude; region_code?: PlaceDataRegionCode; verified_at?: PlaceDataVerifiedAt; content_updated_at?: PlaceDataContentUpdatedAt; notify_email?: PlaceDataNotifyEmail; created_at?: PlaceDataCreatedAt; }