Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 978 Bytes

ConfigObjectClearDTO.md

File metadata and controls

29 lines (20 loc) · 978 Bytes

ConfigObjectClearDTO

Properties

Name Type Description Notes
group str

Example

from dappserver_server_sdk.models.config_object_clear_dto import ConfigObjectClearDTO

# TODO update the JSON string below
json = "{}"
# create an instance of ConfigObjectClearDTO from a JSON string
config_object_clear_dto_instance = ConfigObjectClearDTO.from_json(json)
# print the JSON string representation of the object
print ConfigObjectClearDTO.to_json()

# convert the object into a dict
config_object_clear_dto_dict = config_object_clear_dto_instance.to_dict()
# create an instance of ConfigObjectClearDTO from a dict
config_object_clear_dto_form_dict = config_object_clear_dto.from_dict(config_object_clear_dto_dict)

[Back to Model list] [Back to API list] [Back to README]