Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.33 KB

TeamSeasonPredictedPointsAdded.md

File metadata and controls

32 lines (24 loc) · 1.33 KB

TeamSeasonPredictedPointsAdded

Properties

Name Type Description Notes
season int
conference str
team str
offense TeamSeasonPredictedPointsAddedOffense
defense TeamSeasonPredictedPointsAddedOffense

Example

from cfbd.models.team_season_predicted_points_added import TeamSeasonPredictedPointsAdded

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

# convert the object into a dict
team_season_predicted_points_added_dict = team_season_predicted_points_added_instance.to_dict()
# create an instance of TeamSeasonPredictedPointsAdded from a dict
team_season_predicted_points_added_from_dict = TeamSeasonPredictedPointsAdded.from_dict(team_season_predicted_points_added_dict)

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