Class: TencentCloud::Essbasic::V20201222::DescribeFlowFilesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::DescribeFlowFilesResponse
- Defined in:
- lib/v20201222/models.rb
Overview
DescribeFlowFiles返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowid = nil, flowfileinfos = nil, requestid = nil) ⇒ DescribeFlowFilesResponse
constructor
A new instance of DescribeFlowFilesResponse.
Constructor Details
#initialize(flowid = nil, flowfileinfos = nil, requestid = nil) ⇒ DescribeFlowFilesResponse
Returns a new instance of DescribeFlowFilesResponse.
2483 2484 2485 2486 2487 |
# File 'lib/v20201222/models.rb', line 2483 def initialize(flowid=nil, flowfileinfos=nil, requestid=nil) @FlowId = flowid @FlowFileInfos = flowfileinfos @RequestId = requestid end |
Instance Attribute Details
#FlowFileInfos ⇒ Object
2481 2482 2483 |
# File 'lib/v20201222/models.rb', line 2481 def FlowFileInfos @FlowFileInfos end |
#FlowId ⇒ Object
2481 2482 2483 |
# File 'lib/v20201222/models.rb', line 2481 def FlowId @FlowId end |
#RequestId ⇒ Object
2481 2482 2483 |
# File 'lib/v20201222/models.rb', line 2481 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 |
# File 'lib/v20201222/models.rb', line 2489 def deserialize(params) @FlowId = params['FlowId'] unless params['FlowFileInfos'].nil? @FlowFileInfos = [] params['FlowFileInfos'].each do |i| flowfileinfo_tmp = FlowFileInfo.new flowfileinfo_tmp.deserialize(i) @FlowFileInfos << flowfileinfo_tmp end end @RequestId = params['RequestId'] end |