Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

NetworkSettings

Properties

Name Type Description Notes
csrf_protection bool [optional]
force_ipv4_first bool [optional]
trust_proxy bool [optional]
proxy NetworkSettingsProxy [optional]
dns_cache NetworkSettingsDnsCache [optional]

Example

from seerr.models.network_settings import NetworkSettings

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

# convert the object into a dict
network_settings_dict = network_settings_instance.to_dict()
# create an instance of NetworkSettings from a dict
network_settings_from_dict = NetworkSettings.from_dict(network_settings_dict)

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