Class: TencentCloud::Ess::V20201111::DescribeFlowEvidenceReportRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20201111/models.rb

Overview

DescribeFlowEvidenceReport请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of DescribeFlowEvidenceReportRequest.



10407
10408
10409
10410
10411
10412
# File 'lib/v20201111/models.rb', line 10407

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

Instance Attribute Details

#AgentObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • 执行本接口操作的员工信息。

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

  • 代理企业和员工的信息。

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



10405
10406
10407
# File 'lib/v20201111/models.rb', line 10405

def Agent
  @Agent
end

#OperatorObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • 执行本接口操作的员工信息。

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

  • 代理企业和员工的信息。

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



10405
10406
10407
# File 'lib/v20201111/models.rb', line 10405

def Operator
  @Operator
end

#ReportIdObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • 执行本接口操作的员工信息。

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

  • 代理企业和员工的信息。

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



10405
10406
10407
# File 'lib/v20201111/models.rb', line 10405

def ReportId
  @ReportId
end

#ReportTypeObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • 执行本接口操作的员工信息。

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

  • 代理企业和员工的信息。

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



10405
10406
10407
# File 'lib/v20201111/models.rb', line 10405

def ReportType
  @ReportType
end

Instance Method Details

#deserialize(params) ⇒ Object



10414
10415
10416
10417
10418
10419
10420
10421
10422
10423
10424
10425
# File 'lib/v20201111/models.rb', line 10414

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