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.
14763 14764 14765 14766 14767 14768 14769 14770 |
# File 'lib/v20190612/models.rb', line 14763 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
14761 14762 14763 |
# File 'lib/v20190612/models.rb', line 14761 def Infos @Infos end |
#PageNum ⇒ Object
14761 14762 14763 |
# File 'lib/v20190612/models.rb', line 14761 def PageNum @PageNum end |
#PageSize ⇒ Object
14761 14762 14763 |
# File 'lib/v20190612/models.rb', line 14761 def PageSize @PageSize end |
#RequestId ⇒ Object
14761 14762 14763 |
# File 'lib/v20190612/models.rb', line 14761 def RequestId @RequestId end |
#TotalNum ⇒ Object
14761 14762 14763 |
# File 'lib/v20190612/models.rb', line 14761 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
14761 14762 14763 |
# File 'lib/v20190612/models.rb', line 14761 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 |
# File 'lib/v20190612/models.rb', line 14772 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 |