Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 853 Bytes

File metadata and controls

29 lines (20 loc) · 853 Bytes

FilePathDTO

Properties

Name Type Description Notes
path str

Example

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)

[Back to Model list] [Back to API list] [Back to README]