Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1018 Bytes

File metadata and controls

30 lines (21 loc) · 1018 Bytes

ConfigObjectRemoveDTO

Properties

Name Type Description Notes
group str
object str

Example

from dappserver_server_sdk.models.config_object_remove_dto import ConfigObjectRemoveDTO

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

# convert the object into a dict
config_object_remove_dto_dict = config_object_remove_dto_instance.to_dict()
# create an instance of ConfigObjectRemoveDTO from a dict
config_object_remove_dto_form_dict = config_object_remove_dto.from_dict(config_object_remove_dto_dict)

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