| Name |
Type |
Description |
Notes |
| filename |
str |
|
|
from dappserver_server_sdk.models.config_file_load_dto import ConfigFileLoadDTO
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigFileLoadDTO from a JSON string
config_file_load_dto_instance = ConfigFileLoadDTO.from_json(json)
# print the JSON string representation of the object
print ConfigFileLoadDTO.to_json()
# convert the object into a dict
config_file_load_dto_dict = config_file_load_dto_instance.to_dict()
# create an instance of ConfigFileLoadDTO from a dict
config_file_load_dto_form_dict = config_file_load_dto.from_dict(config_file_load_dto_dict)
[Back to Model list] [Back to API list] [Back to README]