Skip to content

TransformationJobId

The identifier of a transformation job.

Properties

Name Type Description Notes
id int Unique numeric identifier of the transformation job.

Example

from odm_api.models.transformation_job_id import TransformationJobId

# TODO update the JSON string below
json = "{}"
# create an instance of TransformationJobId from a JSON string
transformation_job_id_instance = TransformationJobId.from_json(json)
# print the JSON string representation of the object
print(TransformationJobId.to_json())

# convert the object into a dict
transformation_job_id_dict = transformation_job_id_instance.to_dict()
# create an instance of TransformationJobId from a dict
transformation_job_id_from_dict = TransformationJobId.from_dict(transformation_job_id_dict)
[Back to Model list] [Back to API list] [Back to README]