Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 892 Bytes

ServerConfig.md

File metadata and controls

29 lines (21 loc) · 892 Bytes

ServerConfig

Properties

Name Type Description Notes
data ServerConfigData [optional]

Example

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)

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