Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

ScoreMasterAttributes

Properties

Name Type Description Notes
score int [optional]
limit int [optional]

Example

from clientapi_cpanel.models.score_master_attributes import ScoreMasterAttributes

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

# convert the object into a dict
score_master_attributes_dict = score_master_attributes_instance.to_dict()
# create an instance of ScoreMasterAttributes from a dict
score_master_attributes_from_dict = ScoreMasterAttributes.from_dict(score_master_attributes_dict)

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