Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

MessageChannelList.md

File metadata and controls

29 lines (20 loc) · 977 Bytes

MessageChannelList

Properties

Name Type Description Notes
channels List[MessageChannel]

Example

from opal_security.models.message_channel_list import MessageChannelList

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

# convert the object into a dict
message_channel_list_dict = message_channel_list_instance.to_dict()
# create an instance of MessageChannelList from a dict
message_channel_list_from_dict = MessageChannelList.from_dict(message_channel_list_dict)

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