Properties
Example
from libica.openapi.v3.models.cwl_tool_definition_list import CwlToolDefinitionList
# TODO update the JSON string below
json = "{}"
# create an instance of CwlToolDefinitionList from a JSON string
cwl_tool_definition_list_instance = CwlToolDefinitionList.from_json(json)
# print the JSON string representation of the object
print(CwlToolDefinitionList.to_json())
# convert the object into a dict
cwl_tool_definition_list_dict = cwl_tool_definition_list_instance.to_dict()
# create an instance of CwlToolDefinitionList from a dict
cwl_tool_definition_list_from_dict = CwlToolDefinitionList.from_dict(cwl_tool_definition_list_dict)
[Back to Model list] [Back to API list] [Back to README]