Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.19 KB

File metadata and controls

35 lines (27 loc) · 1.19 KB

CfpPlayoff

Properties

Name Type Description Notes
season int
competition PlayoffCompetitionCfp
format str
team_count int
status PlayoffStatus
participants List[PlayoffParticipant]
rounds List[PlayoffRoundRecord]
champion PlayoffTeam

Example

from cfbd.models.cfp_playoff import CfpPlayoff

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

# convert the object into a dict
cfp_playoff_dict = cfp_playoff_instance.to_dict()
# create an instance of CfpPlayoff from a dict
cfp_playoff_from_dict = CfpPlayoff.from_dict(cfp_playoff_dict)

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