| Name |
Type |
Description |
Notes |
| path |
str |
|
|
| result |
bool |
|
|
from dappserver_server_sdk.models.file_path_check_dto import FilePathCheckDTO
# TODO update the JSON string below
json = "{}"
# create an instance of FilePathCheckDTO from a JSON string
file_path_check_dto_instance = FilePathCheckDTO.from_json(json)
# print the JSON string representation of the object
print FilePathCheckDTO.to_json()
# convert the object into a dict
file_path_check_dto_dict = file_path_check_dto_instance.to_dict()
# create an instance of FilePathCheckDTO from a dict
file_path_check_dto_form_dict = file_path_check_dto.from_dict(file_path_check_dto_dict)
[Back to Model list] [Back to API list] [Back to README]