| Name |
Type |
Description |
Notes |
| id |
int |
|
|
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]