Class: TencentCloud::Mps::V20190612::DescribeStreamLinkFlowsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::DescribeStreamLinkFlowsResponse
- Defined in:
- lib/v20190612/models.rb
Overview
DescribeStreamLinkFlows返回参数结构体
Instance Attribute Summary collapse
- #Infos ⇒ Object
- #PageNum ⇒ Object
- #PageSize ⇒ Object
- #RequestId ⇒ Object
- #TotalNum ⇒ Object
- #TotalPage ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(infos = nil, pagenum = nil, pagesize = nil, totalnum = nil, totalpage = nil, requestid = nil) ⇒ DescribeStreamLinkFlowsResponse
constructor
A new instance of DescribeStreamLinkFlowsResponse.
Constructor Details
#initialize(infos = nil, pagenum = nil, pagesize = nil, totalnum = nil, totalpage = nil, requestid = nil) ⇒ DescribeStreamLinkFlowsResponse
Returns a new instance of DescribeStreamLinkFlowsResponse.
14684 14685 14686 14687 14688 14689 14690 14691 |
# File 'lib/v20190612/models.rb', line 14684 def initialize(infos=nil, pagenum=nil, pagesize=nil, totalnum=nil, totalpage=nil, requestid=nil) @Infos = infos @PageNum = pagenum @PageSize = pagesize @TotalNum = totalnum @TotalPage = totalpage @RequestId = requestid end |
Instance Attribute Details
#Infos ⇒ Object
14682 14683 14684 |
# File 'lib/v20190612/models.rb', line 14682 def Infos @Infos end |
#PageNum ⇒ Object
14682 14683 14684 |
# File 'lib/v20190612/models.rb', line 14682 def PageNum @PageNum end |
#PageSize ⇒ Object
14682 14683 14684 |
# File 'lib/v20190612/models.rb', line 14682 def PageSize @PageSize end |
#RequestId ⇒ Object
14682 14683 14684 |
# File 'lib/v20190612/models.rb', line 14682 def RequestId @RequestId end |
#TotalNum ⇒ Object
14682 14683 14684 |
# File 'lib/v20190612/models.rb', line 14682 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
14682 14683 14684 |
# File 'lib/v20190612/models.rb', line 14682 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 |
# File 'lib/v20190612/models.rb', line 14693 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 @PageNum = params['PageNum'] @PageSize = params['PageSize'] @TotalNum = params['TotalNum'] @TotalPage = params['TotalPage'] @RequestId = params['RequestId'] end |