Class: TencentCloud::Cwp::V20180228::DescribeFastAnalysisResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeFastAnalysisResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeFastAnalysis返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fieldvalueratioinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeFastAnalysisResponse
constructor
A new instance of DescribeFastAnalysisResponse.
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
#FieldValueRatioInfos ⇒ Object
14752 14753 14754 |
# File 'lib/v20180228/models.rb', line 14752 def FieldValueRatioInfos @FieldValueRatioInfos end |
#RequestId ⇒ Object
14752 14753 14754 |
# File 'lib/v20180228/models.rb', line 14752 def RequestId @RequestId end |
#TotalCount ⇒ Object
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 |