Class: TencentCloud::Live::V20180801::PlaySumStatInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::PlaySumStatInfo
- Defined in:
- lib/v20180801/models.rb
Overview
播放汇总统计信息。
Instance Attribute Summary collapse
-
#AvgFluxPerSecond ⇒ Object
单位: MB/s。 计算公式: 每分钟的下载速度求平均值。.
-
#Name ⇒ Object
单位: MB/s。 计算公式: 每分钟的下载速度求平均值。.
-
#TotalFlux ⇒ Object
单位: MB/s。 计算公式: 每分钟的下载速度求平均值。.
-
#TotalRequest ⇒ Object
单位: MB/s。 计算公式: 每分钟的下载速度求平均值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, avgfluxpersecond = nil, totalflux = nil, totalrequest = nil) ⇒ PlaySumStatInfo
constructor
A new instance of PlaySumStatInfo.
Constructor Details
#initialize(name = nil, avgfluxpersecond = nil, totalflux = nil, totalrequest = nil) ⇒ PlaySumStatInfo
Returns a new instance of PlaySumStatInfo.
13389 13390 13391 13392 13393 13394 |
# File 'lib/v20180801/models.rb', line 13389 def initialize(name=nil, avgfluxpersecond=nil, totalflux=nil, totalrequest=nil) @Name = name @AvgFluxPerSecond = avgfluxpersecond @TotalFlux = totalflux @TotalRequest = totalrequest end |
Instance Attribute Details
#AvgFluxPerSecond ⇒ Object
单位: MB/s。计算公式: 每分钟的下载速度求平均值。
13387 13388 13389 |
# File 'lib/v20180801/models.rb', line 13387 def AvgFluxPerSecond @AvgFluxPerSecond end |
#Name ⇒ Object
单位: MB/s。计算公式: 每分钟的下载速度求平均值。
13387 13388 13389 |
# File 'lib/v20180801/models.rb', line 13387 def Name @Name end |
#TotalFlux ⇒ Object
单位: MB/s。计算公式: 每分钟的下载速度求平均值。
13387 13388 13389 |
# File 'lib/v20180801/models.rb', line 13387 def TotalFlux @TotalFlux end |
#TotalRequest ⇒ Object
单位: MB/s。计算公式: 每分钟的下载速度求平均值。
13387 13388 13389 |
# File 'lib/v20180801/models.rb', line 13387 def TotalRequest @TotalRequest end |
Instance Method Details
#deserialize(params) ⇒ Object
13396 13397 13398 13399 13400 13401 |
# File 'lib/v20180801/models.rb', line 13396 def deserialize(params) @Name = params['Name'] @AvgFluxPerSecond = params['AvgFluxPerSecond'] @TotalFlux = params['TotalFlux'] @TotalRequest = params['TotalRequest'] end |