Pular para conteúdo

FileNode

Properties

Name Type Description Notes
name str [optional]
type str Tipo do nó (file ou directory) [optional]
children List[FileNode] Lista de nós filhos, caso o nó seja um diretório [optional]

Example

from pldpro_sdk.api_client.models.file_node import FileNode

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

# convert the object into a dict
file_node_dict = file_node_instance.to_dict()
# create an instance of FileNode from a dict
file_node_from_dict = FileNode.from_dict(file_node_dict)
[Back to Model list] [Back to API list] [Back to README]