Name |
Type |
Description |
Notes |
submission_id |
str |
Submission ID |
|
from woj.models.submit200_response import Submit200Response
# TODO update the JSON string below
json = "{}"
# create an instance of Submit200Response from a JSON string
submit200_response_instance = Submit200Response.from_json(json)
# print the JSON string representation of the object
print Submit200Response.to_json()
# convert the object into a dict
submit200_response_dict = submit200_response_instance.to_dict()
# create an instance of Submit200Response from a dict
submit200_response_form_dict = submit200_response.from_dict(submit200_response_dict)
[Back to Model list] [Back to API list] [Back to README]