UNPKG

@golemio/parkings

Version:
16 lines (15 loc) 626 B
import { IParkingAverageOccupancy } from "./interfaces/IParkingAverageOccupancy"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; export declare class ParkingAverageOccupancyModel extends Model<IParkingAverageOccupancy> implements IParkingAverageOccupancy { static tableName: string; parking_id: string; source: string; source_id: string; day_of_week: number; hour: number; average_occupancy: number; record_count: number; last_updated: Date; static attributeModel: ModelAttributes<ParkingAverageOccupancyModel>; static rawAttributesModel: string[]; }