Class: TencentCloud::Vod::V20180717::DescribeDailyPlayStatFileListResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180717/models.rb

Overview

DescribeDailyPlayStatFileList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#PlayStatFileSetObject

Parameters:

  • PlayStatFileSet:

    播放统计文件列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



10660
10661
10662
# File 'lib/v20180717/models.rb', line 10660

def PlayStatFileSet
  @PlayStatFileSet
end

#RequestIdObject

Parameters:

  • PlayStatFileSet:

    播放统计文件列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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