Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 915 Bytes

File metadata and controls

29 lines (21 loc) · 915 Bytes

RemoveIps

Properties

Name Type Description Notes
value object IP-адрес.
status object Результат удаления IP-адреса.

Example

from timeweb_cloud_api.models.remove_ips import RemoveIps

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

# convert the object into a dict
remove_ips_dict = remove_ips_instance.to_dict()
# create an instance of RemoveIps from a dict
remove_ips_form_dict = remove_ips.from_dict(remove_ips_dict)

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