| Name | Type | Description | Notes |
|---|---|---|---|
| short_left | PassingLocationProduction | ||
| short_middle | PassingLocationProduction | ||
| short_right | PassingLocationProduction | ||
| deep_left | PassingLocationProduction | ||
| deep_middle | PassingLocationProduction | ||
| deep_right | PassingLocationProduction | ||
| unknown | PassingLocationProduction |
from cfbd.models.passing_locations import PassingLocations
# TODO update the JSON string below
json = "{}"
# create an instance of PassingLocations from a JSON string
passing_locations_instance = PassingLocations.from_json(json)
# print the JSON string representation of the object
print PassingLocations.to_json()
# convert the object into a dict
passing_locations_dict = passing_locations_instance.to_dict()
# create an instance of PassingLocations from a dict
passing_locations_from_dict = PassingLocations.from_dict(passing_locations_dict)