Skip to content

NextflowJsonAnalysisInput

Properties

Name Type Description Notes
fields List[InputFormFieldValues] [optional]
groups List[InputFormGroup] [optional]

Example

from libica.openapi.v3.models.nextflow_json_analysis_input import NextflowJsonAnalysisInput

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

# convert the object into a dict
nextflow_json_analysis_input_dict = nextflow_json_analysis_input_instance.to_dict()
# create an instance of NextflowJsonAnalysisInput from a dict
nextflow_json_analysis_input_from_dict = NextflowJsonAnalysisInput.from_dict(nextflow_json_analysis_input_dict)

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