| Name | Type | Description | Notes |
|---|---|---|---|
| forwarded_headers | bool | [optional] | |
| payload | ProxyPayloadConf | [optional] | |
| timeout | ProxyTimeoutConf | [optional] | |
| gatekeeper | GatekeeperConf | [optional] |
from cloudharness_model.models.proxy_conf import ProxyConf
# TODO update the JSON string below
json = "{}"
# create an instance of ProxyConf from a JSON string
proxy_conf_instance = ProxyConf.from_json(json)
# print the JSON string representation of the object
print(ProxyConf.to_json())
# convert the object into a dict
proxy_conf_dict = proxy_conf_instance.to_dict()
# create an instance of ProxyConf from a dict
proxy_conf_from_dict = ProxyConf.from_dict(proxy_conf_dict)