huaweicloud-sdk-python-v3/huaweicloud-sdk-meeting/huaweicloudsdkmeeting/v1/model/update_started_config_req_b...

377 lines
14 KiB
Python
Raw Normal View History

# coding: utf-8
import six
2021-07-26 11:24:08 +00:00
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class UpdateStartedConfigReqBody:
"""
Attributes:
openapi_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
sensitive_list = []
openapi_types = {
'lock_sharing': 'int',
2024-06-27 11:16:10 +00:00
'call_in_restriction': 'int',
'allow_unmute_by_oneself': 'int',
'chat_permission': 'int',
'audience_call_in_restriction': 'int',
'client_rec_mode': 'int',
'allow_open_camera': 'int',
'allow_rename': 'int',
2024-07-18 09:26:07 +00:00
'is_lock': 'int',
2024-06-27 11:16:10 +00:00
'free_share': 'int'
}
attribute_map = {
'lock_sharing': 'lockSharing',
2024-06-27 11:16:10 +00:00
'call_in_restriction': 'callInRestriction',
'allow_unmute_by_oneself': 'allowUnmuteByOneself',
'chat_permission': 'chatPermission',
'audience_call_in_restriction': 'audienceCallInRestriction',
'client_rec_mode': 'clientRecMode',
'allow_open_camera': 'allowOpenCamera',
'allow_rename': 'allowRename',
2024-07-18 09:26:07 +00:00
'is_lock': 'isLock',
2024-06-27 11:16:10 +00:00
'free_share': 'freeShare'
}
2024-07-18 09:26:07 +00:00
def __init__(self, lock_sharing=None, call_in_restriction=None, allow_unmute_by_oneself=None, chat_permission=None, audience_call_in_restriction=None, client_rec_mode=None, allow_open_camera=None, allow_rename=None, is_lock=None, free_share=None):
2022-04-21 12:03:46 +00:00
"""UpdateStartedConfigReqBody
The model defined in huaweicloud sdk
2022-09-22 11:38:02 +00:00
:param lock_sharing: 锁定共享标志位 * 0: 不锁定 * 1: 锁定
2022-04-21 12:03:46 +00:00
:type lock_sharing: int
2022-09-22 11:38:02 +00:00
:param call_in_restriction: 允许加入会议的范围 - 0: 所有用户 - 2: 企业内用户 - 3: 被邀请用户
2022-04-21 12:03:46 +00:00
:type call_in_restriction: int
2024-06-27 11:16:10 +00:00
:param allow_unmute_by_oneself: 是否允许自己解除静音默认为允许 - 0: 不允许 - 1: 允许
:type allow_unmute_by_oneself: int
:param chat_permission: 会议聊天权限 1.全员禁止 2.仅允许私聊 3.仅允许公开聊天 4.允许自由聊天
:type chat_permission: int
:param audience_call_in_restriction: 网络研讨会观众允许呼入的范围 0所有用户 2企业内用户和被邀请用户
:type audience_call_in_restriction: int
:param client_rec_mode: 客户端本地录制权限的范围默认为仅主持人支持本地录制 - 0: 所有用户 - 1全部人可录制 - 2部分人可录制
:type client_rec_mode: int
:param allow_open_camera: 与会人自行开启摄像头 0:禁止 1:允许
:type allow_open_camera: int
:param allow_rename: 是否允许与会人改名 0:不允许 1:允许
:type allow_rename: int
2024-07-18 09:26:07 +00:00
:param is_lock: 锁定会议 0解锁 1锁定
:type is_lock: int
2024-06-27 11:16:10 +00:00
:param free_share: 抢共享权限设置 0:仅主持人/联席 1:所有人可抢共享
:type free_share: int
2022-04-21 12:03:46 +00:00
"""
self._lock_sharing = None
self._call_in_restriction = None
2024-06-27 11:16:10 +00:00
self._allow_unmute_by_oneself = None
self._chat_permission = None
self._audience_call_in_restriction = None
self._client_rec_mode = None
self._allow_open_camera = None
self._allow_rename = None
2024-07-18 09:26:07 +00:00
self._is_lock = None
2024-06-27 11:16:10 +00:00
self._free_share = None
self.discriminator = None
if lock_sharing is not None:
self.lock_sharing = lock_sharing
if call_in_restriction is not None:
self.call_in_restriction = call_in_restriction
2024-06-27 11:16:10 +00:00
if allow_unmute_by_oneself is not None:
self.allow_unmute_by_oneself = allow_unmute_by_oneself
if chat_permission is not None:
self.chat_permission = chat_permission
if audience_call_in_restriction is not None:
self.audience_call_in_restriction = audience_call_in_restriction
if client_rec_mode is not None:
self.client_rec_mode = client_rec_mode
if allow_open_camera is not None:
self.allow_open_camera = allow_open_camera
if allow_rename is not None:
self.allow_rename = allow_rename
2024-07-18 09:26:07 +00:00
if is_lock is not None:
self.is_lock = is_lock
2024-06-27 11:16:10 +00:00
if free_share is not None:
self.free_share = free_share
@property
def lock_sharing(self):
"""Gets the lock_sharing of this UpdateStartedConfigReqBody.
2022-09-22 11:38:02 +00:00
锁定共享标志位 * 0: 不锁定 * 1: 锁定
:return: The lock_sharing of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._lock_sharing
@lock_sharing.setter
def lock_sharing(self, lock_sharing):
"""Sets the lock_sharing of this UpdateStartedConfigReqBody.
2022-09-22 11:38:02 +00:00
锁定共享标志位 * 0: 不锁定 * 1: 锁定
:param lock_sharing: The lock_sharing of this UpdateStartedConfigReqBody.
2022-04-21 12:03:46 +00:00
:type lock_sharing: int
"""
self._lock_sharing = lock_sharing
@property
def call_in_restriction(self):
"""Gets the call_in_restriction of this UpdateStartedConfigReqBody.
2022-09-22 11:38:02 +00:00
允许加入会议的范围 - 0: 所有用户 - 2: 企业内用户 - 3: 被邀请用户
:return: The call_in_restriction of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._call_in_restriction
@call_in_restriction.setter
def call_in_restriction(self, call_in_restriction):
"""Sets the call_in_restriction of this UpdateStartedConfigReqBody.
2022-09-22 11:38:02 +00:00
允许加入会议的范围 - 0: 所有用户 - 2: 企业内用户 - 3: 被邀请用户
:param call_in_restriction: The call_in_restriction of this UpdateStartedConfigReqBody.
2022-04-21 12:03:46 +00:00
:type call_in_restriction: int
"""
self._call_in_restriction = call_in_restriction
2024-06-27 11:16:10 +00:00
@property
def allow_unmute_by_oneself(self):
"""Gets the allow_unmute_by_oneself of this UpdateStartedConfigReqBody.
是否允许自己解除静音默认为允许 - 0: 不允许 - 1: 允许
:return: The allow_unmute_by_oneself of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._allow_unmute_by_oneself
@allow_unmute_by_oneself.setter
def allow_unmute_by_oneself(self, allow_unmute_by_oneself):
"""Sets the allow_unmute_by_oneself of this UpdateStartedConfigReqBody.
是否允许自己解除静音默认为允许 - 0: 不允许 - 1: 允许
:param allow_unmute_by_oneself: The allow_unmute_by_oneself of this UpdateStartedConfigReqBody.
:type allow_unmute_by_oneself: int
"""
self._allow_unmute_by_oneself = allow_unmute_by_oneself
@property
def chat_permission(self):
"""Gets the chat_permission of this UpdateStartedConfigReqBody.
会议聊天权限 1.全员禁止 2.仅允许私聊 3.仅允许公开聊天 4.允许自由聊天
:return: The chat_permission of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._chat_permission
@chat_permission.setter
def chat_permission(self, chat_permission):
"""Sets the chat_permission of this UpdateStartedConfigReqBody.
会议聊天权限 1.全员禁止 2.仅允许私聊 3.仅允许公开聊天 4.允许自由聊天
:param chat_permission: The chat_permission of this UpdateStartedConfigReqBody.
:type chat_permission: int
"""
self._chat_permission = chat_permission
@property
def audience_call_in_restriction(self):
"""Gets the audience_call_in_restriction of this UpdateStartedConfigReqBody.
网络研讨会观众允许呼入的范围 0所有用户 2企业内用户和被邀请用户
:return: The audience_call_in_restriction of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._audience_call_in_restriction
@audience_call_in_restriction.setter
def audience_call_in_restriction(self, audience_call_in_restriction):
"""Sets the audience_call_in_restriction of this UpdateStartedConfigReqBody.
网络研讨会观众允许呼入的范围 0所有用户 2企业内用户和被邀请用户
:param audience_call_in_restriction: The audience_call_in_restriction of this UpdateStartedConfigReqBody.
:type audience_call_in_restriction: int
"""
self._audience_call_in_restriction = audience_call_in_restriction
@property
def client_rec_mode(self):
"""Gets the client_rec_mode of this UpdateStartedConfigReqBody.
客户端本地录制权限的范围默认为仅主持人支持本地录制 - 0: 所有用户 - 1全部人可录制 - 2部分人可录制
:return: The client_rec_mode of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._client_rec_mode
@client_rec_mode.setter
def client_rec_mode(self, client_rec_mode):
"""Sets the client_rec_mode of this UpdateStartedConfigReqBody.
客户端本地录制权限的范围默认为仅主持人支持本地录制 - 0: 所有用户 - 1全部人可录制 - 2部分人可录制
:param client_rec_mode: The client_rec_mode of this UpdateStartedConfigReqBody.
:type client_rec_mode: int
"""
self._client_rec_mode = client_rec_mode
@property
def allow_open_camera(self):
"""Gets the allow_open_camera of this UpdateStartedConfigReqBody.
与会人自行开启摄像头 0:禁止 1:允许
:return: The allow_open_camera of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._allow_open_camera
@allow_open_camera.setter
def allow_open_camera(self, allow_open_camera):
"""Sets the allow_open_camera of this UpdateStartedConfigReqBody.
与会人自行开启摄像头 0:禁止 1:允许
:param allow_open_camera: The allow_open_camera of this UpdateStartedConfigReqBody.
:type allow_open_camera: int
"""
self._allow_open_camera = allow_open_camera
@property
def allow_rename(self):
"""Gets the allow_rename of this UpdateStartedConfigReqBody.
是否允许与会人改名 0:不允许 1:允许
:return: The allow_rename of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._allow_rename
@allow_rename.setter
def allow_rename(self, allow_rename):
"""Sets the allow_rename of this UpdateStartedConfigReqBody.
是否允许与会人改名 0:不允许 1:允许
:param allow_rename: The allow_rename of this UpdateStartedConfigReqBody.
:type allow_rename: int
"""
self._allow_rename = allow_rename
@property
2024-07-18 09:26:07 +00:00
def is_lock(self):
"""Gets the is_lock of this UpdateStartedConfigReqBody.
2024-06-27 11:16:10 +00:00
2024-07-18 09:26:07 +00:00
锁定会议 0解锁 1锁定
2024-06-27 11:16:10 +00:00
2024-07-18 09:26:07 +00:00
:return: The is_lock of this UpdateStartedConfigReqBody.
2024-06-27 11:16:10 +00:00
:rtype: int
"""
2024-07-18 09:26:07 +00:00
return self._is_lock
2024-06-27 11:16:10 +00:00
2024-07-18 09:26:07 +00:00
@is_lock.setter
def is_lock(self, is_lock):
"""Sets the is_lock of this UpdateStartedConfigReqBody.
2024-06-27 11:16:10 +00:00
2024-07-18 09:26:07 +00:00
锁定会议 0解锁 1锁定
2024-06-27 11:16:10 +00:00
2024-07-18 09:26:07 +00:00
:param is_lock: The is_lock of this UpdateStartedConfigReqBody.
:type is_lock: int
2024-06-27 11:16:10 +00:00
"""
2024-07-18 09:26:07 +00:00
self._is_lock = is_lock
2024-06-27 11:16:10 +00:00
@property
def free_share(self):
"""Gets the free_share of this UpdateStartedConfigReqBody.
抢共享权限设置 0:仅主持人/联席 1:所有人可抢共享
:return: The free_share of this UpdateStartedConfigReqBody.
:rtype: int
"""
return self._free_share
@free_share.setter
def free_share(self, free_share):
"""Sets the free_share of this UpdateStartedConfigReqBody.
抢共享权限设置 0:仅主持人/联席 1:所有人可抢共享
:param free_share: The free_share of this UpdateStartedConfigReqBody.
:type free_share: int
"""
self._free_share = free_share
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.openapi_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
if attr in self.sensitive_list:
result[attr] = "****"
else:
result[attr] = value
return result
def to_str(self):
2021-08-10 12:26:18 +00:00
"""Returns the string representation of the model"""
2021-07-09 10:57:08 +00:00
import simplejson as json
2021-08-10 12:26:18 +00:00
if six.PY2:
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
def __repr__(self):
2021-08-10 12:26:18 +00:00
"""For `print`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, UpdateStartedConfigReqBody):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other