Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

NetworkRequest

Properties

Name Type Description Notes
hostname str
firewall_enabled bool [optional]
interfaces List[NetworkInterfaceRequest]
gateway str [optional]

Example

from authentik_client.models.network_request import NetworkRequest

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

# convert the object into a dict
network_request_dict = network_request_instance.to_dict()
# create an instance of NetworkRequest from a dict
network_request_from_dict = NetworkRequest.from_dict(network_request_dict)

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