Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 872 Bytes

File metadata and controls

28 lines (20 loc) · 872 Bytes

ReduceNodes

Properties

Name Type Description Notes
count object Количество нод

Example

from timeweb_cloud_api.models.reduce_nodes import ReduceNodes

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

# convert the object into a dict
reduce_nodes_dict = reduce_nodes_instance.to_dict()
# create an instance of ReduceNodes from a dict
reduce_nodes_form_dict = reduce_nodes.from_dict(reduce_nodes_dict)

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