Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 911 Bytes

PollRank.md

File metadata and controls

32 lines (24 loc) · 911 Bytes

PollRank

Properties

Name Type Description Notes
rank int
school str
conference str
first_place_votes int
points int

Example

from cfbd.models.poll_rank import PollRank

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

# convert the object into a dict
poll_rank_dict = poll_rank_instance.to_dict()
# create an instance of PollRank from a dict
poll_rank_from_dict = PollRank.from_dict(poll_rank_dict)

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