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