Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.2 KB

Channel.md

File metadata and controls

36 lines (27 loc) · 1.2 KB

Channel

Properties

Name Type Description Notes
type SystemChannelConfigType [optional]
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.channel import Channel

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

# convert the object into a dict
channel_dict = channel_instance.to_dict()
# create an instance of Channel from a dict
channel_form_dict = channel.from_dict(channel_dict)

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