Properties
Example
from odm_api.models.transformation_status import TransformationStatus
# TODO update the JSON string below
json = "{}"
# create an instance of TransformationStatus from a JSON string
transformation_status_instance = TransformationStatus.from_json(json)
# print the JSON string representation of the object
print(TransformationStatus.to_json())
# convert the object into a dict
transformation_status_dict = transformation_status_instance.to_dict()
# create an instance of TransformationStatus from a dict
transformation_status_from_dict = TransformationStatus.from_dict(transformation_status_dict)
[Back to Model list] [Back to API list] [Back to README]