Route settings specific to ThingWorx routes. Only used for ThingWorx route types
Name | Type | Description | Notes |
---|---|---|---|
fleets | List[str] | list of Fleet UIDs to apply route to, if any. If empty, applies to all Fleets | [optional] |
filter | HttpFilter | [optional] | |
transform | HttpTransform | [optional] | |
throttle_ms | int | [optional] | |
url | str | [optional] | |
timeout | int | Timeout in seconds for each request | [optional] [default to 15] |
app_key | str | This value is input-only and will be omitted from the response and replaced with a placeholder | [optional] |
from notehub_py.models.thingworx import Thingworx
# TODO update the JSON string below
json = "{}"
# create an instance of Thingworx from a JSON string
thingworx_instance = Thingworx.from_json(json)
# print the JSON string representation of the object
print(Thingworx.to_json())
# convert the object into a dict
thingworx_dict = thingworx_instance.to_dict()
# create an instance of Thingworx from a dict
thingworx_from_dict = Thingworx.from_dict(thingworx_dict)