Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 880 Bytes

File metadata and controls

29 lines (21 loc) · 880 Bytes

AddIps

Properties

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

Example

from timeweb_cloud_api.models.add_ips import AddIps

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

# convert the object into a dict
add_ips_dict = add_ips_instance.to_dict()
# create an instance of AddIps from a dict
add_ips_form_dict = add_ips.from_dict(add_ips_dict)

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