Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 927 Bytes

Submit200Response.md

File metadata and controls

28 lines (20 loc) · 927 Bytes

Submit200Response

Properties

Name Type Description Notes
submission_id str Submission ID

Example

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]