Skip to content

CwlAnalysisStructuredInput

Properties

Name Type Description Notes
object_type str
inputs List[AnalysisDataInput]
parameters List[AnalysisParameterInput] [optional]
reference_data_parameters List[AnalysisReferenceDataParameter] [optional]

Example

from libica.openapi.v3.models.cwl_analysis_structured_input import CwlAnalysisStructuredInput

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

# convert the object into a dict
cwl_analysis_structured_input_dict = cwl_analysis_structured_input_instance.to_dict()
# create an instance of CwlAnalysisStructuredInput from a dict
cwl_analysis_structured_input_from_dict = CwlAnalysisStructuredInput.from_dict(cwl_analysis_structured_input_dict)

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