Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

StationCreate

Properties

Name Type Description Notes
name str
description str [optional]
contact_name str [optional]
contact_email str [optional]
active bool [optional]
start_date datetime
station_type StationType [optional]

Example

from upstream_api_client.models.station_create import StationCreate

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

# convert the object into a dict
station_create_dict = station_create_instance.to_dict()
# create an instance of StationCreate from a dict
station_create_from_dict = StationCreate.from_dict(station_create_dict)

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