class TencentCloud::Trtc::V20190722::AbnormalEvent

造成异常体验可能的异常事件类型

Attributes

AbnormalEventId[RW]

@param AbnormalEventId: 异常事件ID,具体值查看附录:异常体验ID映射表:cloud.tencent.com/document/product/647/44916 @type AbnormalEventId: Integer @param PeerId: 远端用户ID,“”:表示异常事件不是由远端用户产生 注意:此字段可能返回 null,表示取不到有效值。 @type PeerId: String

PeerId[RW]

@param AbnormalEventId: 异常事件ID,具体值查看附录:异常体验ID映射表:cloud.tencent.com/document/product/647/44916 @type AbnormalEventId: Integer @param PeerId: 远端用户ID,“”:表示异常事件不是由远端用户产生 注意:此字段可能返回 null,表示取不到有效值。 @type PeerId: String

Public Class Methods

new(abnormaleventid=nil, peerid=nil) click to toggle source
# File lib/v20190722/models.rb, line 30
def initialize(abnormaleventid=nil, peerid=nil)
  @AbnormalEventId = abnormaleventid
  @PeerId = peerid
end

Public Instance Methods

deserialize(params) click to toggle source
# File lib/v20190722/models.rb, line 35
def deserialize(params)
  @AbnormalEventId = params['AbnormalEventId']
  @PeerId = params['PeerId']
end