Class: TencentCloud::Ess::V20201111::DescribeFlowComponentsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeFlowComponentsResponse
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeFlowComponents返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(recipientcomponentinfos = nil, requestid = nil) ⇒ DescribeFlowComponentsResponse
constructor
A new instance of DescribeFlowComponentsResponse.
Constructor Details
#initialize(recipientcomponentinfos = nil, requestid = nil) ⇒ DescribeFlowComponentsResponse
Returns a new instance of DescribeFlowComponentsResponse.
10372 10373 10374 10375 |
# File 'lib/v20201111/models.rb', line 10372 def initialize(recipientcomponentinfos=nil, requestid=nil) @RecipientComponentInfos = recipientcomponentinfos @RequestId = requestid end |
Instance Attribute Details
#RecipientComponentInfos ⇒ Object
10370 10371 10372 |
# File 'lib/v20201111/models.rb', line 10370 def RecipientComponentInfos @RecipientComponentInfos end |
#RequestId ⇒ Object
10370 10371 10372 |
# File 'lib/v20201111/models.rb', line 10370 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 |
# File 'lib/v20201111/models.rb', line 10377 def deserialize(params) unless params['RecipientComponentInfos'].nil? @RecipientComponentInfos = [] params['RecipientComponentInfos'].each do |i| recipientcomponentinfo_tmp = RecipientComponentInfo.new recipientcomponentinfo_tmp.deserialize(i) @RecipientComponentInfos << recipientcomponentinfo_tmp end end @RequestId = params['RequestId'] end |