Class: TencentCloud::Cwp::V20180228::DescribeFastAnalysisResponse

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

Overview

DescribeFastAnalysis返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fieldvalueratioinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeFastAnalysisResponse

Returns a new instance of DescribeFastAnalysisResponse.



14469
14470
14471
14472
14473
# File 'lib/v20180228/models.rb', line 14469

def initialize(fieldvalueratioinfos=nil, totalcount=nil, requestid=nil)
  @FieldValueRatioInfos = fieldvalueratioinfos
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#FieldValueRatioInfosObject

Parameters:

  • FieldValueRatioInfos:

    分析统计信息

  • TotalCount:

    总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



14467
14468
14469
# File 'lib/v20180228/models.rb', line 14467

def FieldValueRatioInfos
  @FieldValueRatioInfos
end

#RequestIdObject

Parameters:

  • FieldValueRatioInfos:

    分析统计信息

  • TotalCount:

    总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



14467
14468
14469
# File 'lib/v20180228/models.rb', line 14467

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • FieldValueRatioInfos:

    分析统计信息

  • TotalCount:

    总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



14467
14468
14469
# File 'lib/v20180228/models.rb', line 14467

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



14475
14476
14477
14478
14479
14480
14481
14482
14483
14484
14485
14486
# File 'lib/v20180228/models.rb', line 14475

def deserialize(params)
  unless params['FieldValueRatioInfos'].nil?
    @FieldValueRatioInfos = []
    params['FieldValueRatioInfos'].each do |i|
      fieldvalueratioinfo_tmp = FieldValueRatioInfo.new
      fieldvalueratioinfo_tmp.deserialize(i)
      @FieldValueRatioInfos << fieldvalueratioinfo_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end