Class: TencentCloud::Essbasic::V20210526::DescribeChannelFlowEvidenceReportRequest

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

Overview

DescribeChannelFlowEvidenceReport请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, reportid = nil, operator = nil, reporttype = nil) ⇒ DescribeChannelFlowEvidenceReportRequest

Returns a new instance of DescribeChannelFlowEvidenceReportRequest.



7843
7844
7845
7846
7847
7848
# File 'lib/v20210526/models.rb', line 7843

def initialize(agent=nil, reportid=nil, operator=nil, reporttype=nil)
  @Agent = agent
  @ReportId = reportid
  @Operator = operator
  @ReportType = reporttype
end

Instance Attribute Details

#AgentObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • ReportId:

    签署报告编号, 由提交申请出证报告任务产生

  • Operator:

    暂未开放

  • ReportType:

    指定申请的报告类型,可选类型如下:



7838
7839
7840
# File 'lib/v20210526/models.rb', line 7838

def Agent
  @Agent
end

#OperatorObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • ReportId:

    签署报告编号, 由提交申请出证报告任务产生

  • Operator:

    暂未开放

  • ReportType:

    指定申请的报告类型,可选类型如下:



7838
7839
7840
# File 'lib/v20210526/models.rb', line 7838

def Operator
  @Operator
end

#ReportIdObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • ReportId:

    签署报告编号, 由提交申请出证报告任务产生

  • Operator:

    暂未开放

  • ReportType:

    指定申请的报告类型,可选类型如下:



7838
7839
7840
# File 'lib/v20210526/models.rb', line 7838

def ReportId
  @ReportId
end

#ReportTypeObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • ReportId:

    签署报告编号, 由提交申请出证报告任务产生

  • Operator:

    暂未开放

  • ReportType:

    指定申请的报告类型,可选类型如下:



7838
7839
7840
# File 'lib/v20210526/models.rb', line 7838

def ReportType
  @ReportType
end

Instance Method Details

#deserialize(params) ⇒ Object



7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
# File 'lib/v20210526/models.rb', line 7850

def deserialize(params)
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @ReportId = params['ReportId']
  unless params['Operator'].nil?
    @Operator = UserInfo.new
    @Operator.deserialize(params['Operator'])
  end
  @ReportType = params['ReportType']
end