class TencentCloud::Trtc::V20190722::QualityData
Es返回的质量数据
Attributes
@param Content: 数据内容 @type Content: Array @param UserId: 用户ID @type UserId: String @param PeerId: 对端Id,为空时表示上行数据 注意:此字段可能返回 null,表示取不到有效值。 @type PeerId: String @param DataType: 数据类型 @type DataType: String
@param Content: 数据内容 @type Content: Array @param UserId: 用户ID @type UserId: String @param PeerId: 对端Id,为空时表示上行数据 注意:此字段可能返回 null,表示取不到有效值。 @type PeerId: String @param DataType: 数据类型 @type DataType: String
@param Content: 数据内容 @type Content: Array @param UserId: 用户ID @type UserId: String @param PeerId: 对端Id,为空时表示上行数据 注意:此字段可能返回 null,表示取不到有效值。 @type PeerId: String @param DataType: 数据类型 @type DataType: String
@param Content: 数据内容 @type Content: Array @param UserId: 用户ID @type UserId: String @param PeerId: 对端Id,为空时表示上行数据 注意:此字段可能返回 null,表示取不到有效值。 @type PeerId: String @param DataType: 数据类型 @type DataType: String
Public Class Methods
# File lib/v20190722/models.rb, line 1573 def initialize(content=nil, userid=nil, peerid=nil, datatype=nil) @Content = content @UserId = userid @PeerId = peerid @DataType = datatype end
Public Instance Methods
# File lib/v20190722/models.rb, line 1580 def deserialize(params) unless params['Content'].nil? @Content = [] params['Content'].each do |i| timevalue_tmp = TimeValue.new timevalue_tmp.deserialize(i) @Content << timevalue_tmp end end @UserId = params['UserId'] @PeerId = params['PeerId'] @DataType = params['DataType'] end