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.
14202 14203 14204 14205 14206 |
# File 'lib/v20190612/models.rb', line 14202 def initialize(infos=nil, totalnum=nil, requestid=nil) @Infos = infos @TotalNum = totalnum @RequestId = requestid end |
Instance Attribute Details
#Infos ⇒ Object
14200 14201 14202 |
# File 'lib/v20190612/models.rb', line 14200 def Infos @Infos end |
#RequestId ⇒ Object
14200 14201 14202 |
# File 'lib/v20190612/models.rb', line 14200 def RequestId @RequestId end |
#TotalNum ⇒ Object
14200 14201 14202 |
# File 'lib/v20190612/models.rb', line 14200 def TotalNum @TotalNum end |
Instance Method Details
#deserialize(params) ⇒ Object
14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 |
# File 'lib/v20190612/models.rb', line 14208 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 |