Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.15 KB

LineupUnitStatsFourFactors.md

File metadata and controls

31 lines (23 loc) · 1.15 KB

LineupUnitStatsFourFactors

Properties

Name Type Description Notes
free_throw_rate float
offensive_rebound_pct float
turnover_ratio float
effective_field_goal_pct float

Example

from cbbd.models.lineup_unit_stats_four_factors import LineupUnitStatsFourFactors

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

# convert the object into a dict
lineup_unit_stats_four_factors_dict = lineup_unit_stats_four_factors_instance.to_dict()
# create an instance of LineupUnitStatsFourFactors from a dict
lineup_unit_stats_four_factors_from_dict = LineupUnitStatsFourFactors.from_dict(lineup_unit_stats_four_factors_dict)

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