Channel configuration for invoking a waylay webscript.
Name | Type | Description | Notes |
---|---|---|---|
type | WebScriptChannelConfigType | [optional] [default to WebScriptChannelConfigType.WEBSCRIPT] | |
description | str | [optional] | |
payload | PayloadConfig | [optional] | |
authentication | AuthenticationConfig | [optional] | |
expiry | Expiry | [optional] | |
name | str | ||
version | str | [optional] | |
method | HTTPMETHOD | [optional] |
from waylay.services.storage.models.web_script_channel_config import WebScriptChannelConfig
# TODO update the JSON string below
json = "{}"
# create an instance of WebScriptChannelConfig from a JSON string
web_script_channel_config_instance = WebScriptChannelConfig.from_json(json)
# print the JSON string representation of the object
print WebScriptChannelConfig.to_json()
# convert the object into a dict
web_script_channel_config_dict = web_script_channel_config_instance.to_dict()
# create an instance of WebScriptChannelConfig from a dict
web_script_channel_config_form_dict = web_script_channel_config.from_dict(web_script_channel_config_dict)