Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1013 Bytes

File metadata and controls

30 lines (21 loc) · 1013 Bytes

Score

Properties

Name Type Description Notes
master ScoreMaster [optional]
sub_scores List[ScoreSubScores] Monitoring checks subcategory results. ** Note: ** We use the check subcategory results to calculate the master results. [optional] [default to []]

Example

from clientapi_cpanel.models.score import Score

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

# convert the object into a dict
score_dict = score_instance.to_dict()
# create an instance of Score from a dict
score_from_dict = Score.from_dict(score_dict)

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