Skip to content

Files

Latest commit

 

History

History
30 lines (22 loc) · 1.12 KB

AdjustedEfficiencyInfoRankings.md

File metadata and controls

30 lines (22 loc) · 1.12 KB

AdjustedEfficiencyInfoRankings

Properties

Name Type Description Notes
net float
defense float
offense float

Example

from cbbd.models.adjusted_efficiency_info_rankings import AdjustedEfficiencyInfoRankings

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

# convert the object into a dict
adjusted_efficiency_info_rankings_dict = adjusted_efficiency_info_rankings_instance.to_dict()
# create an instance of AdjustedEfficiencyInfoRankings from a dict
adjusted_efficiency_info_rankings_from_dict = AdjustedEfficiencyInfoRankings.from_dict(adjusted_efficiency_info_rankings_dict)

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