Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1023 Bytes

File metadata and controls

29 lines (21 loc) · 1023 Bytes

NodeGroupResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
node_group NodeGroupOut

Example

from timeweb_cloud_api.models.node_group_response import NodeGroupResponse

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

# convert the object into a dict
node_group_response_dict = node_group_response_instance.to_dict()
# create an instance of NodeGroupResponse from a dict
node_group_response_form_dict = node_group_response.from_dict(node_group_response_dict)

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