Properties
| Name |
Type |
Description |
Notes |
| var_schema |
str |
A URL to the JSON Schema for this object. |
[optional] [readonly] |
| id |
int |
|
|
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]