| Name | Type | Description | Notes |
|---|---|---|---|
| team | PlayoffTeam | ||
| committee_rank | int | ||
| seed | int | ||
| bid_type | PlayoffBidType | ||
| qualification_reason | str | ||
| conference_champion | bool | ||
| qualifying_conference | str | ||
| first_round_bye | bool | ||
| outcome | PlayoffOutcome | ||
| eliminated_round | PlayoffRound |
from cfbd.models.playoff_participant import PlayoffParticipant
# TODO update the JSON string below
json = "{}"
# create an instance of PlayoffParticipant from a JSON string
playoff_participant_instance = PlayoffParticipant.from_json(json)
# print the JSON string representation of the object
print PlayoffParticipant.to_json()
# convert the object into a dict
playoff_participant_dict = playoff_participant_instance.to_dict()
# create an instance of PlayoffParticipant from a dict
playoff_participant_from_dict = PlayoffParticipant.from_dict(playoff_participant_dict)