TransformationImageReference¶
A reference to a specific transformation image, by name and (optionally) version.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Unique name of the transformation image. | |
| version | str | Version of the transformation image. When omitted, the latest version is used. | [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)