This will be delivered as a list. Users can iterate through this
for lib in domain_object.get_libs():
print(lib)
Each object in the list will be delivered as a dictionary with keys; ‘name’, ‘current_path. For example, users can return all the library names
for lib in domain_object.get_libs():
print(lib['name'])