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