Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 915 Bytes

PollWeek.md

File metadata and controls

31 lines (23 loc) · 915 Bytes

PollWeek

Properties

Name Type Description Notes
season int
season_type SeasonType
week int
polls List[Poll]

Example

from cfbd.models.poll_week import PollWeek

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

# convert the object into a dict
poll_week_dict = poll_week_instance.to_dict()
# create an instance of PollWeek from a dict
poll_week_from_dict = PollWeek.from_dict(poll_week_dict)

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