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