| Name |
Type |
Description |
Notes |
| message |
str |
|
|
from cfbd.models.cfp_playoff_not_found import CfpPlayoffNotFound
# TODO update the JSON string below
json = "{}"
# create an instance of CfpPlayoffNotFound from a JSON string
cfp_playoff_not_found_instance = CfpPlayoffNotFound.from_json(json)
# print the JSON string representation of the object
print CfpPlayoffNotFound.to_json()
# convert the object into a dict
cfp_playoff_not_found_dict = cfp_playoff_not_found_instance.to_dict()
# create an instance of CfpPlayoffNotFound from a dict
cfp_playoff_not_found_from_dict = CfpPlayoffNotFound.from_dict(cfp_playoff_not_found_dict)
[Back to Model list] [Back to API list] [Back to README]