Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.02 KB

File metadata and controls

30 lines (22 loc) · 1.02 KB

PlayerSuccessRateSplit

Properties

Name Type Description Notes
plays int
successes int
success_rate float

Example

from cfbd.models.player_success_rate_split import PlayerSuccessRateSplit

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

# convert the object into a dict
player_success_rate_split_dict = player_success_rate_split_instance.to_dict()
# create an instance of PlayerSuccessRateSplit from a dict
player_success_rate_split_from_dict = PlayerSuccessRateSplit.from_dict(player_success_rate_split_dict)

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