| Name | Type | Description | Notes |
|---|---|---|---|
| disable_http_headers | bool | [optional] | |
| filter | Filter | [optional] | |
| fleets | List[str] | If non-empty, applies only to the listed fleets. | [optional] |
| http_headers | Dict[str, str] | [optional] | |
| throttle_ms | int | [optional] | |
| timeout | int | [optional] | |
| transform | RouteTransformSettings | [optional] | |
| url | str | [optional] |
from notehub_py.models.http_route import HttpRoute
# TODO update the JSON string below
json = "{}"
# create an instance of HttpRoute from a JSON string
http_route_instance = HttpRoute.from_json(json)
# print the JSON string representation of the object
print(HttpRoute.to_json())
# convert the object into a dict
http_route_dict = http_route_instance.to_dict()
# create an instance of HttpRoute from a dict
http_route_from_dict = HttpRoute.from_dict(http_route_dict)