Properties
| Name |
Type |
Description |
Notes |
| name |
str |
|
|
| version |
str |
|
[optional] [default to 'latest'] |
Example
from odm_api.models.transformation_image_reference import TransformationImageReference
# TODO update the JSON string below
json = "{}"
# create an instance of TransformationImageReference from a JSON string
transformation_image_reference_instance = TransformationImageReference.from_json(json)
# print the JSON string representation of the object
print(TransformationImageReference.to_json())
# convert the object into a dict
transformation_image_reference_dict = transformation_image_reference_instance.to_dict()
# create an instance of TransformationImageReference from a dict
transformation_image_reference_from_dict = TransformationImageReference.from_dict(transformation_image_reference_dict)
[Back to Model list] [Back to API list] [Back to README]