Properties
| Name |
Type |
Description |
Notes |
| data |
Dict[str, object] |
|
|
| description |
str |
|
[optional] |
| id |
int |
|
|
| name |
str |
|
[optional] |
Example
from odm_api.models.transformation_configuration import TransformationConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of TransformationConfiguration from a JSON string
transformation_configuration_instance = TransformationConfiguration.from_json(json)
# print the JSON string representation of the object
print(TransformationConfiguration.to_json())
# convert the object into a dict
transformation_configuration_dict = transformation_configuration_instance.to_dict()
# create an instance of TransformationConfiguration from a dict
transformation_configuration_from_dict = TransformationConfiguration.from_dict(transformation_configuration_dict)
[Back to Model list] [Back to API list] [Back to README]