| Name |
Type |
Description |
Notes |
| count |
object |
Количество нод |
|
| labels |
object |
Лейблы добавляемых нод |
[optional] |
from timeweb_cloud_api.models.increase_nodes import IncreaseNodes
# TODO update the JSON string below
json = "{}"
# create an instance of IncreaseNodes from a JSON string
increase_nodes_instance = IncreaseNodes.from_json(json)
# print the JSON string representation of the object
print IncreaseNodes.to_json()
# convert the object into a dict
increase_nodes_dict = increase_nodes_instance.to_dict()
# create an instance of IncreaseNodes from a dict
increase_nodes_form_dict = increase_nodes.from_dict(increase_nodes_dict)
[Back to Model list] [Back to API list] [Back to README]