Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.15 KB

PollTeamInfo.md

File metadata and controls

38 lines (30 loc) · 1.15 KB

PollTeamInfo

Properties

Name Type Description Notes
season int
season_type SeasonType
week int
poll_date datetime
poll_type str
team_id float
team str
conference str
ranking float
points float
first_place_votes float

Example

from cbbd.models.poll_team_info import PollTeamInfo

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

# convert the object into a dict
poll_team_info_dict = poll_team_info_instance.to_dict()
# create an instance of PollTeamInfo from a dict
poll_team_info_from_dict = PollTeamInfo.from_dict(poll_team_info_dict)

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