| Name | Type | Description | Notes |
|---|---|---|---|
| path | str |
from dappserver_server_sdk.models.file_path_dto import FilePathDTO
# TODO update the JSON string below
json = "{}"
# create an instance of FilePathDTO from a JSON string
file_path_dto_instance = FilePathDTO.from_json(json)
# print the JSON string representation of the object
print FilePathDTO.to_json()
# convert the object into a dict
file_path_dto_dict = file_path_dto_instance.to_dict()
# create an instance of FilePathDTO from a dict
file_path_dto_form_dict = file_path_dto.from_dict(file_path_dto_dict)