Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.32 KB

File metadata and controls

37 lines (29 loc) · 1.32 KB

PlayoffParticipant

Properties

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

Example

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)

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