Class: TencentCloud::Essbasic::V20210526::DescribeFlowDetailInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::DescribeFlowDetailInfoResponse
- Defined in:
- lib/v20210526/models.rb
Overview
DescribeFlowDetailInfo返回参数结构体
Instance Attribute Summary collapse
-
#ApplicationId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。.
-
#FlowGroupId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。.
-
#FlowGroupName ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。.
-
#FlowInfo ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。.
-
#ProxyOrganizationOpenId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。.
-
#RequestId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(applicationid = nil, proxyorganizationopenid = nil, flowinfo = nil, flowgroupid = nil, flowgroupname = nil, requestid = nil) ⇒ DescribeFlowDetailInfoResponse
constructor
A new instance of DescribeFlowDetailInfoResponse.
Constructor Details
#initialize(applicationid = nil, proxyorganizationopenid = nil, flowinfo = nil, flowgroupid = nil, flowgroupname = nil, requestid = nil) ⇒ DescribeFlowDetailInfoResponse
Returns a new instance of DescribeFlowDetailInfoResponse.
8226 8227 8228 8229 8230 8231 8232 8233 |
# File 'lib/v20210526/models.rb', line 8226 def initialize(applicationid=nil, proxyorganizationopenid=nil, flowinfo=nil, flowgroupid=nil, flowgroupname=nil, requestid=nil) @ApplicationId = applicationid @ProxyOrganizationOpenId = proxyorganizationopenid @FlowInfo = flowinfo @FlowGroupId = flowgroupid @FlowGroupName = flowgroupname @RequestId = requestid end |
Instance Attribute Details
#ApplicationId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。
8224 8225 8226 |
# File 'lib/v20210526/models.rb', line 8224 def ApplicationId @ApplicationId end |
#FlowGroupId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。
8224 8225 8226 |
# File 'lib/v20210526/models.rb', line 8224 def FlowGroupId @FlowGroupId end |
#FlowGroupName ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。
8224 8225 8226 |
# File 'lib/v20210526/models.rb', line 8224 def FlowGroupName @FlowGroupName end |
#FlowInfo ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。
8224 8225 8226 |
# File 'lib/v20210526/models.rb', line 8224 def FlowInfo @FlowInfo end |
#ProxyOrganizationOpenId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。
8224 8225 8226 |
# File 'lib/v20210526/models.rb', line 8224 def ProxyOrganizationOpenId @ProxyOrganizationOpenId end |
#RequestId ⇒ Object
如果查询的是合同组信息,则返回的是组内所有子合同流程的详细信息。
8224 8225 8226 |
# File 'lib/v20210526/models.rb', line 8224 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 |
# File 'lib/v20210526/models.rb', line 8235 def deserialize(params) @ApplicationId = params['ApplicationId'] @ProxyOrganizationOpenId = params['ProxyOrganizationOpenId'] unless params['FlowInfo'].nil? @FlowInfo = [] params['FlowInfo'].each do |i| flowdetailinfo_tmp = FlowDetailInfo.new flowdetailinfo_tmp.deserialize(i) @FlowInfo << flowdetailinfo_tmp end end @FlowGroupId = params['FlowGroupId'] @FlowGroupName = params['FlowGroupName'] @RequestId = params['RequestId'] end |