You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MessageChannel Object ### Description The MessageChannel object is used to represent a message channel. ### Usage Example Update a groups message channel from the UPDATE Groups endpoint.
A bool representing whether or not the message channel is private.
[optional]
Example
fromopal_security.models.message_channelimportMessageChannel# TODO update the JSON string belowjson="{}"# create an instance of MessageChannel from a JSON stringmessage_channel_instance=MessageChannel.from_json(json)
# print the JSON string representation of the objectprint(MessageChannel.to_json())
# convert the object into a dictmessage_channel_dict=message_channel_instance.to_dict()
# create an instance of MessageChannel from a dictmessage_channel_from_dict=MessageChannel.from_dict(message_channel_dict)