Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

ConfigFileRenderStringDTO

Properties

Name Type Description Notes
template str
model object

Example

from dappserver_server_sdk.models.config_file_render_string_dto import ConfigFileRenderStringDTO

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

# convert the object into a dict
config_file_render_string_dto_dict = config_file_render_string_dto_instance.to_dict()
# create an instance of ConfigFileRenderStringDTO from a dict
config_file_render_string_dto_form_dict = config_file_render_string_dto.from_dict(config_file_render_string_dto_dict)

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