Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 830 Bytes

File metadata and controls

28 lines (20 loc) · 830 Bytes

NetworkIn

Properties

Name Type Description Notes
networks object Сети

Example

from timeweb_cloud_api.models.network_in import NetworkIn

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

# convert the object into a dict
network_in_dict = network_in_instance.to_dict()
# create an instance of NetworkIn from a dict
network_in_form_dict = network_in.from_dict(network_in_dict)

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