Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.04 KB

File metadata and controls

33 lines (23 loc) · 1.04 KB

ProxyConf

Properties

Name Type Description Notes
forwarded_headers bool [optional]
payload ProxyPayloadConf [optional]
timeout ProxyTimeoutConf [optional]
gatekeeper GatekeeperConf [optional]

Example

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)

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