Properties
| Name |
Type |
Description |
Notes |
| default_memory_size |
str |
|
[optional] |
| default_volume_size |
str |
|
[optional] |
| description |
str |
|
[optional] |
| input_formats |
List[str] |
|
[optional] |
| name |
str |
|
|
| output_formats |
List[TransformationOutputFormat] |
|
[optional] |
| version |
str |
|
[optional] [default to 'latest'] |
Example
from odm_api.models.transformation_image import TransformationImage
# TODO update the JSON string below
json = "{}"
# create an instance of TransformationImage from a JSON string
transformation_image_instance = TransformationImage.from_json(json)
# print the JSON string representation of the object
print(TransformationImage.to_json())
# convert the object into a dict
transformation_image_dict = transformation_image_instance.to_dict()
# create an instance of TransformationImage from a dict
transformation_image_from_dict = TransformationImage.from_dict(transformation_image_dict)
[Back to Model list] [Back to API list] [Back to README]