Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 978 Bytes

File metadata and controls

29 lines (20 loc) · 978 Bytes

StationCreateResponse

Properties

Name Type Description Notes
id int

Example

from upstream_api_client.models.station_create_response import StationCreateResponse

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

# convert the object into a dict
station_create_response_dict = station_create_response_instance.to_dict()
# create an instance of StationCreateResponse from a dict
station_create_response_from_dict = StationCreateResponse.from_dict(station_create_response_dict)

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