Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 782 Bytes

Poll.md

File metadata and controls

29 lines (21 loc) · 782 Bytes

Poll

Properties

Name Type Description Notes
poll str
ranks List[PollRank]

Example

from cfbd.models.poll import Poll

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

# convert the object into a dict
poll_dict = poll_instance.to_dict()
# create an instance of Poll from a dict
poll_from_dict = Poll.from_dict(poll_dict)

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