Class: TencentCloud::Ess::V20201111::DescribeFlowEvidenceReportRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeFlowEvidenceReportRequest
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeFlowEvidenceReport请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。- 0 :合同签署报告(默认)
- 1 :公证处核验报告
-
#Operator ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。- 0 :合同签署报告(默认)
- 1 :公证处核验报告
-
#ReportId ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。- 0 :合同签署报告(默认)
- 1 :公证处核验报告
-
#ReportType ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。- 0 :合同签署报告(默认)
- 1 :公证处核验报告
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, reportid = nil, agent = nil, reporttype = nil) ⇒ DescribeFlowEvidenceReportRequest
constructor
A new instance of DescribeFlowEvidenceReportRequest.
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
#Agent ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
10405 10406 10407 |
# File 'lib/v20201111/models.rb', line 10405 def Agent @Agent end |
#Operator ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
10405 10406 10407 |
# File 'lib/v20201111/models.rb', line 10405 def Operator @Operator end |
#ReportId ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
10405 10406 10407 |
# File 'lib/v20201111/models.rb', line 10405 def ReportId @ReportId end |
#ReportType ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
- **0** :合同签署报告(默认)
- **1** :公证处核验报告
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 |