The SetListen command enables or disables the listen privilege for this Conference Participant. The Participant can hear what the other participants are saying only if this privilege is enabled.
| Name | Type | Description | Notes |
|---|---|---|---|
| listen | bool | Specifying `false` will silence the Conference for this Participant. | [optional] |
from freeclimb.models.set_listen import SetListen
# TODO update the JSON string below
json = "{}"
# create an instance of SetListen from a JSON string
set_listen_instance = SetListen.from_json(json)
# print the JSON string representation of the object
print(SetListen.to_json())
# convert the object into a dict
set_listen_dict = set_listen_instance.to_dict()
# create an instance of SetListen from a dict
set_listen_from_dict = SetListen.from_dict(set_listen_dict)