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.



14754
14755
14756
14757
14758
# File 'lib/v20180228/models.rb', line 14754

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。



14752
14753
14754
# File 'lib/v20180228/models.rb', line 14752

def FieldValueRatioInfos
  @FieldValueRatioInfos
end

#RequestIdObject

Parameters:

  • FieldValueRatioInfos:

    分析统计信息

  • TotalCount:

    总数

  • RequestId:

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



14752
14753
14754
# File 'lib/v20180228/models.rb', line 14752

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • FieldValueRatioInfos:

    分析统计信息

  • TotalCount:

    总数

  • RequestId:

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



14752
14753
14754
# File 'lib/v20180228/models.rb', line 14752

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



14760
14761
14762
14763
14764
14765
14766
14767
14768
14769
14770
14771
# File 'lib/v20180228/models.rb', line 14760

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