Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

ScoreAttributes.md

File metadata and controls

34 lines (25 loc) · 1.09 KB

ScoreAttributes

Properties

Name Type Description Notes
scoring str [optional]
score int [optional]
components_processed int [optional]
components_failed int [optional]
limit int [optional]
tool str [optional]

Example

from clientapi_cpanel.models.score_attributes import ScoreAttributes

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

# convert the object into a dict
score_attributes_dict = score_attributes_instance.to_dict()
# create an instance of ScoreAttributes from a dict
score_attributes_from_dict = ScoreAttributes.from_dict(score_attributes_dict)

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