Class: TencentCloud::Essbasic::V20210526::ChannelDescribeFlowComponentsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelDescribeFlowComponentsResponse
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelDescribeFlowComponents返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(recipientcomponentinfos = nil, requestid = nil) ⇒ ChannelDescribeFlowComponentsResponse
constructor
A new instance of ChannelDescribeFlowComponentsResponse.
Constructor Details
#initialize(recipientcomponentinfos = nil, requestid = nil) ⇒ ChannelDescribeFlowComponentsResponse
Returns a new instance of ChannelDescribeFlowComponentsResponse.
4148 4149 4150 4151 |
# File 'lib/v20210526/models.rb', line 4148 def initialize(recipientcomponentinfos=nil, requestid=nil) @RecipientComponentInfos = recipientcomponentinfos @RequestId = requestid end |
Instance Attribute Details
#RecipientComponentInfos ⇒ Object
4146 4147 4148 |
# File 'lib/v20210526/models.rb', line 4146 def RecipientComponentInfos @RecipientComponentInfos end |
#RequestId ⇒ Object
4146 4147 4148 |
# File 'lib/v20210526/models.rb', line 4146 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 |
# File 'lib/v20210526/models.rb', line 4153 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 |