Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 925 Bytes

File metadata and controls

30 lines (20 loc) · 925 Bytes

ProxyPayloadConf

Properties

Name Type Description Notes
max int [optional]

Example

from cloudharness_model.models.proxy_payload_conf import ProxyPayloadConf

# TODO update the JSON string below
json = "{}"
# create an instance of ProxyPayloadConf from a JSON string
proxy_payload_conf_instance = ProxyPayloadConf.from_json(json)
# print the JSON string representation of the object
print(ProxyPayloadConf.to_json())

# convert the object into a dict
proxy_payload_conf_dict = proxy_payload_conf_instance.to_dict()
# create an instance of ProxyPayloadConf from a dict
proxy_payload_conf_from_dict = ProxyPayloadConf.from_dict(proxy_payload_conf_dict)

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