Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

PatchPrivateNetworkResponse.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

PatchPrivateNetworkResponse

Properties

Name Type Description Notes
data List[PrivateNetworkResponse]
links SelfLinks

Example

from pfruck_contabo.models.patch_private_network_response import PatchPrivateNetworkResponse

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

# convert the object into a dict
patch_private_network_response_dict = patch_private_network_response_instance.to_dict()
# create an instance of PatchPrivateNetworkResponse from a dict
patch_private_network_response_from_dict = PatchPrivateNetworkResponse.from_dict(patch_private_network_response_dict)

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