Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.52 KB

WebScriptChannelConfig.md

File metadata and controls

37 lines (28 loc) · 1.52 KB

WebScriptChannelConfig

Channel configuration for invoking a waylay webscript.

Properties

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]

Example

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)

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