Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.78 KB

File metadata and controls

35 lines (26 loc) · 1.78 KB

FreightingGoodsVansDepartureAndDestination

Properties

Name Type Description Notes
type str
activity str [optional] [default to 'vans']
specification str [optional] [default to 'average']
detail str Hint: Some specifications only support certain details. [optional] [default to 'average']
departure str City, Postal Address, Train Station or IATA Code of the departure address
destination str City, Postal Address, Train Station or IATA Code of the destination address
return_trip bool Decide if the trip is one way or return [optional] [default to True]

Example

from klimapi_python.models.freighting_goods_vans_departure_and_destination import FreightingGoodsVansDepartureAndDestination

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

# convert the object into a dict
freighting_goods_vans_departure_and_destination_dict = freighting_goods_vans_departure_and_destination_instance.to_dict()
# create an instance of FreightingGoodsVansDepartureAndDestination from a dict
freighting_goods_vans_departure_and_destination_from_dict = FreightingGoodsVansDepartureAndDestination.from_dict(freighting_goods_vans_departure_and_destination_dict)

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