A list of message channel IDs.
| Name | Type | Description | Notes |
|---|---|---|---|
| message_channel_ids | List[UUID] |
from opal_security.models.message_channel_id_list import MessageChannelIDList
# TODO update the JSON string below
json = "{}"
# create an instance of MessageChannelIDList from a JSON string
message_channel_id_list_instance = MessageChannelIDList.from_json(json)
# print the JSON string representation of the object
print(MessageChannelIDList.to_json())
# convert the object into a dict
message_channel_id_list_dict = message_channel_id_list_instance.to_dict()
# create an instance of MessageChannelIDList from a dict
message_channel_id_list_from_dict = MessageChannelIDList.from_dict(message_channel_id_list_dict)