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