Class: TencentCloud::Essbasic::V20210526::CreateChannelFlowEvidenceReportRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::CreateChannelFlowEvidenceReportRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
CreateChannelFlowEvidenceReport请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#FlowId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#ReportType ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, flowid = nil, operator = nil, reporttype = nil) ⇒ CreateChannelFlowEvidenceReportRequest
constructor
A new instance of CreateChannelFlowEvidenceReportRequest.
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
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
5689 5690 5691 |
# File 'lib/v20210526/models.rb', line 5689 def Agent @Agent end |
#FlowId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
5689 5690 5691 |
# File 'lib/v20210526/models.rb', line 5689 def FlowId @FlowId end |
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
5689 5690 5691 |
# File 'lib/v20210526/models.rb', line 5689 def Operator @Operator end |
#ReportType ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
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 |