NodeResponse
Resposta com os dados completos do node.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| uuid | UUID | ||
| nome | str | ||
| ip | str | [optional] | |
| dns | str | [optional] | |
| porta | int | ||
| modo_execucao | ExecutionMode | ||
| local_execution | TypeNodeExecutionEnum | [optional] | |
| created_at | datetime | ||
| updated_at | datetime |
Example
from pldpro_sdk.api_client.models.node_response import NodeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of NodeResponse from a JSON string
node_response_instance = NodeResponse.from_json(json)
# print the JSON string representation of the object
print(NodeResponse.to_json())
# convert the object into a dict
node_response_dict = node_response_instance.to_dict()
# create an instance of NodeResponse from a dict
node_response_from_dict = NodeResponse.from_dict(node_response_dict)