Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.35 KB

File metadata and controls

31 lines (23 loc) · 1.35 KB

PlayerRushingSeasonDirections

Properties

Name Type Description Notes
unknown RushingDirectionProduction
right RushingDirectionProduction
middle RushingDirectionProduction
left RushingDirectionProduction

Example

from cfbd.models.player_rushing_season_directions import PlayerRushingSeasonDirections

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

# convert the object into a dict
player_rushing_season_directions_dict = player_rushing_season_directions_instance.to_dict()
# create an instance of PlayerRushingSeasonDirections from a dict
player_rushing_season_directions_from_dict = PlayerRushingSeasonDirections.from_dict(player_rushing_season_directions_dict)

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