Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.02 KB

ModuleList.md

File metadata and controls

30 lines (22 loc) · 1.02 KB

ModuleList

Response schema for module lists

Properties

Name Type Description Notes
status str The status of the resource, values: accepted, running, finished, terminated, error
processes List[Module] The list of modules in GRASS GIS

Example

from actinia_openapi_python_client.models.module_list import ModuleList

# TODO update the JSON string below
json = "{}"
# create an instance of ModuleList from a JSON string
module_list_instance = ModuleList.from_json(json)
# print the JSON string representation of the object
print ModuleList.to_json()

# convert the object into a dict
module_list_dict = module_list_instance.to_dict()
# create an instance of ModuleList from a dict
module_list_form_dict = module_list.from_dict(module_list_dict)

[Back to Model list] [Back to API list] [Back to README]