Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1006 Bytes

File metadata and controls

30 lines (21 loc) · 1006 Bytes

ReverseProxyRule

Properties

Name Type Description Notes
file FileReverseProxyProvider [optional]
path str [optional]

Example

from halo_client.models.reverse_proxy_rule import ReverseProxyRule

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

# convert the object into a dict
reverse_proxy_rule_dict = reverse_proxy_rule_instance.to_dict()
# create an instance of ReverseProxyRule from a dict
reverse_proxy_rule_from_dict = ReverseProxyRule.from_dict(reverse_proxy_rule_dict)

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