Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.06 KB

File metadata and controls

31 lines (23 loc) · 1.06 KB

PlayoffMatchupSlot

Properties

Name Type Description Notes
position int
seed int
participant PlayoffTeam
source PlayoffMatchupSlotSource

Example

from cfbd.models.playoff_matchup_slot import PlayoffMatchupSlot

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

# convert the object into a dict
playoff_matchup_slot_dict = playoff_matchup_slot_instance.to_dict()
# create an instance of PlayoffMatchupSlot from a dict
playoff_matchup_slot_from_dict = PlayoffMatchupSlot.from_dict(playoff_matchup_slot_dict)

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