Skip to content

TransformationJobCreateFields

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
configuration_id int [optional]
dry_run bool [optional] [default to False]
image_reference TransformationImageReference
input_accessions List[str]
memory_size str [optional]
volume_size str [optional]

Example

from odm_api.models.transformation_job_create_fields import TransformationJobCreateFields

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

# convert the object into a dict
transformation_job_create_fields_dict = transformation_job_create_fields_instance.to_dict()
# create an instance of TransformationJobCreateFields from a dict
transformation_job_create_fields_from_dict = TransformationJobCreateFields.from_dict(transformation_job_create_fields_dict)
[Back to Model list] [Back to API list] [Back to README]