Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

File metadata and controls

30 lines (22 loc) · 1.09 KB

NodeGroupsResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
meta SchemasMeta
node_groups object Массив объектов Группа нод

Example

from timeweb_cloud_api.models.node_groups_response import NodeGroupsResponse

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

# convert the object into a dict
node_groups_response_dict = node_groups_response_instance.to_dict()
# create an instance of NodeGroupsResponse from a dict
node_groups_response_form_dict = node_groups_response.from_dict(node_groups_response_dict)

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