Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1023 Bytes

File metadata and controls

30 lines (22 loc) · 1023 Bytes

NodesResponse

Properties

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

Example

from timeweb_cloud_api.models.nodes_response import NodesResponse

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

# convert the object into a dict
nodes_response_dict = nodes_response_instance.to_dict()
# create an instance of NodesResponse from a dict
nodes_response_form_dict = nodes_response.from_dict(nodes_response_dict)

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