The overall results for the check.
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The title of the check. | [optional] |
| status | str | The check's summarized status. * `good` — The check has returned a positive result. * `bad` — The check has returned a negative result. | [optional] |
| message | str | The check'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. ** Note: ** A higher score indicates that your website performs well in that check. | [optional] |
| incidents | List[str] | [optional] [default to []] | |
| attributes | ScoreMasterAttributes | [optional] |
from clientapi_cpanel.models.score_master import ScoreMaster
# TODO update the JSON string below
json = "{}"
# create an instance of ScoreMaster from a JSON string
score_master_instance = ScoreMaster.from_json(json)
# print the JSON string representation of the object
print(ScoreMaster.to_json())
# convert the object into a dict
score_master_dict = score_master_instance.to_dict()
# create an instance of ScoreMaster from a dict
score_master_from_dict = ScoreMaster.from_dict(score_master_dict)