Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1004 Bytes

ConfigObjectSetDTO.md

File metadata and controls

31 lines (22 loc) · 1004 Bytes

ConfigObjectSetDTO

Properties

Name Type Description Notes
group str
object str
data str

Example

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]