Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.33 KB

ApiProblemGet200ResponseProblemsInner.md

File metadata and controls

32 lines (24 loc) · 1.33 KB

ApiProblemGet200ResponseProblemsInner

Problem

Properties

Name Type Description Notes
sub Dict[str, float] Submission count of each status
id str Problem ID
name str Problem name
tags List[str] Problem tags

Example

from woj.models.api_problem_get200_response_problems_inner import ApiProblemGet200ResponseProblemsInner

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

# convert the object into a dict
api_problem_get200_response_problems_inner_dict = api_problem_get200_response_problems_inner_instance.to_dict()
# create an instance of ApiProblemGet200ResponseProblemsInner from a dict
api_problem_get200_response_problems_inner_form_dict = api_problem_get200_response_problems_inner.from_dict(api_problem_get200_response_problems_inner_dict)

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