Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.4 KB

SystemChannelConfig.md

File metadata and controls

34 lines (25 loc) · 1.4 KB

SystemChannelConfig

Channel configuration for functionality that is fixed by the platform. This cannot be selected by the end user.

Properties

Name Type Description Notes
type SystemChannelConfigType [optional] [default to SystemChannelConfigType.SYSTEM]
description str [optional]
payload PayloadConfig [optional]
authentication AuthenticationConfig [optional]
expiry Expiry [optional]

Example

from waylay.services.storage.models.system_channel_config import SystemChannelConfig

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

# convert the object into a dict
system_channel_config_dict = system_channel_config_instance.to_dict()
# create an instance of SystemChannelConfig from a dict
system_channel_config_form_dict = system_channel_config.from_dict(system_channel_config_dict)

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