TransformationStatus¶
The current lifecycle status of a transformation job.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | Human-readable explanation of the current state, where available. | [optional] |
| reason | TransformationStateReason | [optional] | |
| state | TransformationState |
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)