Class: TencentCloud::Mps::V20190612::DescribeStreamLinkEventAttachedFlowsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::DescribeStreamLinkEventAttachedFlowsResponse
- Defined in:
- lib/v20190612/models.rb
Overview
DescribeStreamLinkEventAttachedFlows返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(infos = nil, totalnum = nil, requestid = nil) ⇒ DescribeStreamLinkEventAttachedFlowsResponse
constructor
A new instance of DescribeStreamLinkEventAttachedFlowsResponse.
Constructor Details
#initialize(infos = nil, totalnum = nil, requestid = nil) ⇒ DescribeStreamLinkEventAttachedFlowsResponse
Returns a new instance of DescribeStreamLinkEventAttachedFlowsResponse.
14123 14124 14125 14126 14127 |
# File 'lib/v20190612/models.rb', line 14123 def initialize(infos=nil, totalnum=nil, requestid=nil) @Infos = infos @TotalNum = totalnum @RequestId = requestid end |
Instance Attribute Details
#Infos ⇒ Object
14121 14122 14123 |
# File 'lib/v20190612/models.rb', line 14121 def Infos @Infos end |
#RequestId ⇒ Object
14121 14122 14123 |
# File 'lib/v20190612/models.rb', line 14121 def RequestId @RequestId end |
#TotalNum ⇒ Object
14121 14122 14123 |
# File 'lib/v20190612/models.rb', line 14121 def TotalNum @TotalNum end |
Instance Method Details
#deserialize(params) ⇒ Object
14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 |
# File 'lib/v20190612/models.rb', line 14129 def deserialize(params) unless params['Infos'].nil? @Infos = [] params['Infos'].each do |i| describeflow_tmp = DescribeFlow.new describeflow_tmp.deserialize(i) @Infos << describeflow_tmp end end @TotalNum = params['TotalNum'] @RequestId = params['RequestId'] end |