/** * Fleet Vehicle Master Schema * Master record for each vehicle in the fleet */ declare class FleetVehicleMasterBase { _id?: string; fltvh_registration_number?: string; fltvh_vehicle_name?: string; fltvh_vehicle_type_sygms?: string; fltvh_make?: string; fltvh_model?: string; fltvh_year?: number; fltvh_color?: string; fltvh_chassis_number?: string; fltvh_engine_number?: string; fltvh_fuel_type_sygms?: string; fltvh_seating_capacity?: number; fltvh_ownership_type_sygms?: string; fltvh_purchase_date?: Date; fltvh_purchase_cost?: number; fltvh_entity_id_syen?: string; fltvh_status_sygms?: string; fltvh_current_odometer_km?: number; fltvh_tracking_device_id?: string; fltvh_custom_fields?: any; fltvh_isactive?: boolean; fltvh_created_at?: Date; fltvh_updated_at?: Date; fltvh_created_by_user?: string; } declare class FleetVehicleMaster extends FleetVehicleMasterBase { } export { FleetVehicleMasterBase, FleetVehicleMaster };