Class: TencentCloud::Vod::V20180717::DescribeDailyPlayStatFileListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::DescribeDailyPlayStatFileListResponse
- Defined in:
- lib/v20180717/models.rb
Overview
DescribeDailyPlayStatFileList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(playstatfileset = nil, requestid = nil) ⇒ DescribeDailyPlayStatFileListResponse
constructor
A new instance of DescribeDailyPlayStatFileListResponse.
Constructor Details
#initialize(playstatfileset = nil, requestid = nil) ⇒ DescribeDailyPlayStatFileListResponse
Returns a new instance of DescribeDailyPlayStatFileListResponse.
10662 10663 10664 10665 |
# File 'lib/v20180717/models.rb', line 10662 def initialize(playstatfileset=nil, requestid=nil) @PlayStatFileSet = playstatfileset @RequestId = requestid end |
Instance Attribute Details
#PlayStatFileSet ⇒ Object
10660 10661 10662 |
# File 'lib/v20180717/models.rb', line 10660 def PlayStatFileSet @PlayStatFileSet end |
#RequestId ⇒ Object
10660 10661 10662 |
# File 'lib/v20180717/models.rb', line 10660 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 |
# File 'lib/v20180717/models.rb', line 10667 def deserialize(params) unless params['PlayStatFileSet'].nil? @PlayStatFileSet = [] params['PlayStatFileSet'].each do |i| playstatfileinfo_tmp = PlayStatFileInfo.new playstatfileinfo_tmp.deserialize(i) @PlayStatFileSet << playstatfileinfo_tmp end end @RequestId = params['RequestId'] end |