Name |
Type |
Description |
Notes |
title |
str |
The title of the check subcategory. |
[optional] |
status |
str |
The check subcategory's summarized status. * `good` — The check has returned a positive result. * `bad` — The check has returned a negative result. |
[optional] |
message |
str |
The check subcategory's status message. |
[optional] |
description |
str |
A description of the check. |
[optional] |
identifier |
str |
An unique identifier for the check. |
[optional] |
score |
int |
A numeral score for the check subcategory. ** Note: ** A higher score indicates that your website performs well in that check. |
[optional] |
incidents |
List[str] |
|
[optional] [default to []] |
weight |
int |
The weighted contribution of the subcategory check's `score` result to the `master` object's `score` result. |
[optional] |
weighted_score |
int |
The score after weight has been adjusted. |
[optional] |
attributes |
ScoreAttributes |
|
[optional] |
from clientapi_cpanel.models.score_sub_scores import ScoreSubScores
# TODO update the JSON string below
json = "{}"
# create an instance of ScoreSubScores from a JSON string
score_sub_scores_instance = ScoreSubScores.from_json(json)
# print the JSON string representation of the object
print(ScoreSubScores.to_json())
# convert the object into a dict
score_sub_scores_dict = score_sub_scores_instance.to_dict()
# create an instance of ScoreSubScores from a dict
score_sub_scores_from_dict = ScoreSubScores.from_dict(score_sub_scores_dict)
[Back to Model list] [Back to API list] [Back to README]