AnalysisExternalData¶
The external data used as input by the analysis.
Properties¶
Name | Type | Description | Notes |
---|---|---|---|
url | str | ||
type | str | Possible values are: s3, http, basespace. More types could be added in a future release. | |
mount_path | str |
Example¶
from libica.openapi.v3.models.analysis_external_data import AnalysisExternalData
# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisExternalData from a JSON string
analysis_external_data_instance = AnalysisExternalData.from_json(json)
# print the JSON string representation of the object
print(AnalysisExternalData.to_json())
# convert the object into a dict
analysis_external_data_dict = analysis_external_data_instance.to_dict()
# create an instance of AnalysisExternalData from a dict
analysis_external_data_from_dict = AnalysisExternalData.from_dict(analysis_external_data_dict)