| Name | Type | Description | Notes |
|---|---|---|---|
| season | int | ||
| competition | PlayoffCompetitionCfp | ||
| format | str | ||
| team_count | int | ||
| status | PlayoffStatus | ||
| participants | List[PlayoffParticipant] | ||
| rounds | List[PlayoffRoundRecord] | ||
| champion | PlayoffTeam |
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)