Class: TencentCloud::Live::V20180801::DescribeLiveTranscodeDetailInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeLiveTranscodeDetailInfoResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeLiveTranscodeDetailInfo返回参数结构体
Instance Attribute Summary collapse
- #DataInfoList ⇒ Object
- #PageNum ⇒ Object
- #PageSize ⇒ Object
- #RequestId ⇒ Object
- #TotalNum ⇒ Object
- #TotalPage ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(datainfolist = nil, pagenum = nil, pagesize = nil, totalnum = nil, totalpage = nil, requestid = nil) ⇒ DescribeLiveTranscodeDetailInfoResponse
constructor
A new instance of DescribeLiveTranscodeDetailInfoResponse.
Constructor Details
#initialize(datainfolist = nil, pagenum = nil, pagesize = nil, totalnum = nil, totalpage = nil, requestid = nil) ⇒ DescribeLiveTranscodeDetailInfoResponse
Returns a new instance of DescribeLiveTranscodeDetailInfoResponse.
8607 8608 8609 8610 8611 8612 8613 8614 |
# File 'lib/v20180801/models.rb', line 8607 def initialize(datainfolist=nil, pagenum=nil, pagesize=nil, totalnum=nil, totalpage=nil, requestid=nil) @DataInfoList = datainfolist @PageNum = pagenum @PageSize = pagesize @TotalNum = totalnum @TotalPage = totalpage @RequestId = requestid end |
Instance Attribute Details
#DataInfoList ⇒ Object
8605 8606 8607 |
# File 'lib/v20180801/models.rb', line 8605 def DataInfoList @DataInfoList end |
#PageNum ⇒ Object
8605 8606 8607 |
# File 'lib/v20180801/models.rb', line 8605 def PageNum @PageNum end |
#PageSize ⇒ Object
8605 8606 8607 |
# File 'lib/v20180801/models.rb', line 8605 def PageSize @PageSize end |
#RequestId ⇒ Object
8605 8606 8607 |
# File 'lib/v20180801/models.rb', line 8605 def RequestId @RequestId end |
#TotalNum ⇒ Object
8605 8606 8607 |
# File 'lib/v20180801/models.rb', line 8605 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
8605 8606 8607 |
# File 'lib/v20180801/models.rb', line 8605 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 |
# File 'lib/v20180801/models.rb', line 8616 def deserialize(params) unless params['DataInfoList'].nil? @DataInfoList = [] params['DataInfoList'].each do |i| transcodedetailinfo_tmp = TranscodeDetailInfo.new transcodedetailinfo_tmp.deserialize(i) @DataInfoList << transcodedetailinfo_tmp end end @PageNum = params['PageNum'] @PageSize = params['PageSize'] @TotalNum = params['TotalNum'] @TotalPage = params['TotalPage'] @RequestId = params['RequestId'] end |