You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Distance a passenger traveled in the given unit. Example: 2 passengers travel 300 kilometers. So the right value would be 600 and the unit would be passenger.kilometers. Need a more specific unit? See the full list of supported units (Section 6).
[optional] [default to 'kilometers']
Example
fromklimapi_python.models.travel_air_average_passenger_distanceimportTravelAirAveragePassengerDistance# TODO update the JSON string belowjson="{}"# create an instance of TravelAirAveragePassengerDistance from a JSON stringtravel_air_average_passenger_distance_instance=TravelAirAveragePassengerDistance.from_json(json)
# print the JSON string representation of the objectprint(TravelAirAveragePassengerDistance.to_json())
# convert the object into a dicttravel_air_average_passenger_distance_dict=travel_air_average_passenger_distance_instance.to_dict()
# create an instance of TravelAirAveragePassengerDistance from a dicttravel_air_average_passenger_distance_from_dict=TravelAirAveragePassengerDistance.from_dict(travel_air_average_passenger_distance_dict)