Class: TencentCloud::Essbasic::V20210526::ChannelCreateUserRolesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateUserRolesRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateUserRoles请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#OpenIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#RoleIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#UserIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, roleids = nil, userids = nil, openids = nil, operator = nil) ⇒ ChannelCreateUserRolesRequest
constructor
A new instance of ChannelCreateUserRolesRequest.
Constructor Details
#initialize(agent = nil, roleids = nil, userids = nil, openids = nil, operator = nil) ⇒ ChannelCreateUserRolesRequest
Returns a new instance of ChannelCreateUserRolesRequest.
3578 3579 3580 3581 3582 3583 3584 |
# File 'lib/v20210526/models.rb', line 3578 def initialize(agent=nil, roleids=nil, userids=nil, openids=nil, operator=nil) @Agent = agent @RoleIds = roleids @UserIds = userids @OpenIds = openids @Operator = operator end |
Instance Attribute Details
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
3573 3574 3575 |
# File 'lib/v20210526/models.rb', line 3573 def Agent @Agent end |
#OpenIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
3573 3574 3575 |
# File 'lib/v20210526/models.rb', line 3573 def OpenIds @OpenIds end |
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
3573 3574 3575 |
# File 'lib/v20210526/models.rb', line 3573 def Operator @Operator end |
#RoleIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
3573 3574 3575 |
# File 'lib/v20210526/models.rb', line 3573 def RoleIds @RoleIds end |
#UserIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
3573 3574 3575 |
# File 'lib/v20210526/models.rb', line 3573 def UserIds @UserIds end |
Instance Method Details
#deserialize(params) ⇒ Object
3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 |
# File 'lib/v20210526/models.rb', line 3586 def deserialize(params) unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @RoleIds = params['RoleIds'] @UserIds = params['UserIds'] @OpenIds = params['OpenIds'] unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end end |