Class: TencentCloud::Essbasic::V20210526::ChannelGetTaskResultApiRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelGetTaskResultApiRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelGetTaskResultApi请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#Organization ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#TaskId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, taskid = nil, operator = nil, organization = nil) ⇒ ChannelGetTaskResultApiRequest
constructor
A new instance of ChannelGetTaskResultApiRequest.
Constructor Details
#initialize(agent = nil, taskid = nil, operator = nil, organization = nil) ⇒ ChannelGetTaskResultApiRequest
Returns a new instance of ChannelGetTaskResultApiRequest.
4588 4589 4590 4591 4592 4593 |
# File 'lib/v20210526/models.rb', line 4588 def initialize(agent=nil, taskid=nil, operator=nil, organization=nil) @Agent = agent @TaskId = taskid @Operator = operator @Organization = organization end |
Instance Attribute Details
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
4581 4582 4583 |
# File 'lib/v20210526/models.rb', line 4581 def Agent @Agent end |
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
4581 4582 4583 |
# File 'lib/v20210526/models.rb', line 4581 def Operator @Operator end |
#Organization ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
4581 4582 4583 |
# File 'lib/v20210526/models.rb', line 4581 def Organization @Organization end |
#TaskId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
4581 4582 4583 |
# File 'lib/v20210526/models.rb', line 4581 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 |
# File 'lib/v20210526/models.rb', line 4595 def deserialize(params) unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @TaskId = params['TaskId'] unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end unless params['Organization'].nil? @Organization = OrganizationInfo.new @Organization.deserialize(params['Organization']) end end |