AnalysisCreationBatch
Properties
Name |
Type |
Description |
Notes |
id |
str |
|
|
job |
Job |
|
[optional] |
Example
from libica.openapi.v3.models.analysis_creation_batch import AnalysisCreationBatch
# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisCreationBatch from a JSON string
analysis_creation_batch_instance = AnalysisCreationBatch.from_json(json)
# print the JSON string representation of the object
print(AnalysisCreationBatch.to_json())
# convert the object into a dict
analysis_creation_batch_dict = analysis_creation_batch_instance.to_dict()
# create an instance of AnalysisCreationBatch from a dict
analysis_creation_batch_from_dict = AnalysisCreationBatch.from_dict(analysis_creation_batch_dict)
[Back to Model list] [Back to API list] [Back to README]