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