class TencentCloud::Trtc::V20190722::DescribeAbnormalEventResponse

DescribeAbnormalEvent返回参数结构体

Attributes

AbnormalExperienceList[RW]

@param Total: 返回的数据总条数 @type Total: Integer @param AbnormalExperienceList: 异常体验列表 @type AbnormalExperienceList: Array @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @type RequestId: String

RequestId[RW]

@param Total: 返回的数据总条数 @type Total: Integer @param AbnormalExperienceList: 异常体验列表 @type AbnormalExperienceList: Array @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @type RequestId: String

Total[RW]

@param Total: 返回的数据总条数 @type Total: Integer @param AbnormalExperienceList: 异常体验列表 @type AbnormalExperienceList: Array @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @type RequestId: String

Public Class Methods

new(total=nil, abnormalexperiencelist=nil, requestid=nil) click to toggle source
# File lib/v20190722/models.rb, line 283
def initialize(total=nil, abnormalexperiencelist=nil, requestid=nil)
  @Total = total
  @AbnormalExperienceList = abnormalexperiencelist
  @RequestId = requestid
end

Public Instance Methods

deserialize(params) click to toggle source
# File lib/v20190722/models.rb, line 289
def deserialize(params)
  @Total = params['Total']
  unless params['AbnormalExperienceList'].nil?
    @AbnormalExperienceList = []
    params['AbnormalExperienceList'].each do |i|
      abnormalexperience_tmp = AbnormalExperience.new
      abnormalexperience_tmp.deserialize(i)
      @AbnormalExperienceList << abnormalexperience_tmp
    end
  end
  @RequestId = params['RequestId']
end