Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.43 KB

File metadata and controls

34 lines (26 loc) · 1.43 KB

PassingLocations

Properties

Name Type Description Notes
short_left PassingLocationProduction
short_middle PassingLocationProduction
short_right PassingLocationProduction
deep_left PassingLocationProduction
deep_middle PassingLocationProduction
deep_right PassingLocationProduction
unknown PassingLocationProduction

Example

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)

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