Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

ChallengeRead

Properties

Name Type Description Notes
id str
deadline datetime
sorry SQLSorry
status ChallengeStatus
submission str

Example

from sorrydb_api_client.models.challenge_read import ChallengeRead

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

# convert the object into a dict
challenge_read_dict = challenge_read_instance.to_dict()
# create an instance of ChallengeRead from a dict
challenge_read_from_dict = ChallengeRead.from_dict(challenge_read_dict)

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