AuthNodeResponse
Representa uma configuração de autenticação associada a um node.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| uuid | UUID | ||
| usuario | str | ||
| path_workdir | str | ||
| created_at | datetime | ||
| updated_at | datetime |
Example
from pldpro_sdk.api_client.models.auth_node_response import AuthNodeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AuthNodeResponse from a JSON string
auth_node_response_instance = AuthNodeResponse.from_json(json)
# print the JSON string representation of the object
print(AuthNodeResponse.to_json())
# convert the object into a dict
auth_node_response_dict = auth_node_response_instance.to_dict()
# create an instance of AuthNodeResponse from a dict
auth_node_response_from_dict = AuthNodeResponse.from_dict(auth_node_response_dict)