Class: TencentCloud::Iotvideoindustry::V20201201::RecordStatistic

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

Overview

大盘统计-录像存储统计 出参RecordStatistic

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(time = nil, value = nil) ⇒ RecordStatistic

Returns a new instance of RecordStatistic.



5894
5895
5896
5897
# File 'lib/v20201201/models.rb', line 5894

def initialize(time=nil, value=nil)
  @Time = time
  @Value = value
end

Instance Attribute Details

#TimeObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Time:

    时间戳

  • Value:

    统计结果



5892
5893
5894
# File 'lib/v20201201/models.rb', line 5892

def Time
  @Time
end

#ValueObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Time:

    时间戳

  • Value:

    统计结果



5892
5893
5894
# File 'lib/v20201201/models.rb', line 5892

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



5899
5900
5901
5902
5903
5904
5905
# File 'lib/v20201201/models.rb', line 5899

def deserialize(params)
  @Time = params['Time']
  unless params['Value'].nil?
    @Value = RecordStatisticValue.new
    @Value.deserialize(params['Value'])
  end
end