Name | Type | Description | Notes |
---|---|---|---|
data | ServerConfigData | [optional] |
from listmonk.models.server_config import ServerConfig
# TODO update the JSON string below
json = "{}"
# create an instance of ServerConfig from a JSON string
server_config_instance = ServerConfig.from_json(json)
# print the JSON string representation of the object
print
ServerConfig.to_json()
# convert the object into a dict
server_config_dict = server_config_instance.to_dict()
# create an instance of ServerConfig from a dict
server_config_form_dict = server_config.from_dict(server_config_dict)