Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 978 Bytes

File metadata and controls

29 lines (20 loc) · 978 Bytes

ConfigObjectCountDTO

Properties

Name Type Description Notes
group str

Example

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]