Class: TencentCloud::Essbasic::V20210526::ChannelGetTaskResultApiRequest

Inherits:
Common::AbstractModel
  • Object
show all
Extended by:
Gem::Deprecate
Defined in:
lib/v20210526/models.rb

Overview

ChannelGetTaskResultApi请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#AgentObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证

Parameters:

  • TaskId:

    转换任务Id,通过接口创建文件转换任务接口得到的转换任务id

  • Operator:

    操作者的信息,不用传

  • Organization:

    暂未开放



4581
4582
4583
# File 'lib/v20210526/models.rb', line 4581

def Agent
  @Agent
end

#OperatorObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证

Parameters:

  • TaskId:

    转换任务Id,通过接口创建文件转换任务接口得到的转换任务id

  • Operator:

    操作者的信息,不用传

  • Organization:

    暂未开放



4581
4582
4583
# File 'lib/v20210526/models.rb', line 4581

def Operator
  @Operator
end

#OrganizationObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证

Parameters:

  • TaskId:

    转换任务Id,通过接口创建文件转换任务接口得到的转换任务id

  • Operator:

    操作者的信息,不用传

  • Organization:

    暂未开放



4581
4582
4583
# File 'lib/v20210526/models.rb', line 4581

def Organization
  @Organization
end

#TaskIdObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证

Parameters:

  • TaskId:

    转换任务Id,通过接口创建文件转换任务接口得到的转换任务id

  • Operator:

    操作者的信息,不用传

  • Organization:

    暂未开放



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