Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 966 Bytes

SubmitRequest.md

File metadata and controls

30 lines (22 loc) · 966 Bytes

SubmitRequest

Properties

Name Type Description Notes
problem str Problem ID
code str Source code
lang str Programming language of the source code

Example

from woj.models.submit_request import SubmitRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SubmitRequest from a JSON string
submit_request_instance = SubmitRequest.from_json(json)
# print the JSON string representation of the object
print SubmitRequest.to_json()

# convert the object into a dict
submit_request_dict = submit_request_instance.to_dict()
# create an instance of SubmitRequest from a dict
submit_request_form_dict = submit_request.from_dict(submit_request_dict)

[Back to Model list] [Back to API list] [Back to README]