Class: TencentCloud::Essbasic::V20210526::CreateChannelFlowEvidenceReportRequest

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

Overview

CreateChannelFlowEvidenceReport请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, flowid = nil, operator = nil, reporttype = nil) ⇒ CreateChannelFlowEvidenceReportRequest

Returns a new instance of CreateChannelFlowEvidenceReportRequest.



5694
5695
5696
5697
5698
5699
# File 'lib/v20210526/models.rb', line 5694

def initialize(agent=nil, flowid=nil, operator=nil, reporttype=nil)
  @Agent = agent
  @FlowId = flowid
  @Operator = operator
  @ReportType = reporttype
end

Instance Attribute Details

#AgentObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • FlowId:

    合同流程ID,为32位字符串。

  • Operator:

    暂未开放

  • ReportType:

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



5689
5690
5691
# File 'lib/v20210526/models.rb', line 5689

def Agent
  @Agent
end

#FlowIdObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • FlowId:

    合同流程ID,为32位字符串。

  • Operator:

    暂未开放

  • ReportType:

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



5689
5690
5691
# File 'lib/v20210526/models.rb', line 5689

def FlowId
  @FlowId
end

#OperatorObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • FlowId:

    合同流程ID,为32位字符串。

  • Operator:

    暂未开放

  • ReportType:

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



5689
5690
5691
# File 'lib/v20210526/models.rb', line 5689

def Operator
  @Operator
end

#ReportTypeObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
  • **0** :合同签署报告(默认)
  • **1** :公证处核验报告

Parameters:

  • FlowId:

    合同流程ID,为32位字符串。

  • Operator:

    暂未开放

  • ReportType:

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



5689
5690
5691
# File 'lib/v20210526/models.rb', line 5689

def ReportType
  @ReportType
end

Instance Method Details

#deserialize(params) ⇒ Object



5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
# File 'lib/v20210526/models.rb', line 5701

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