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.
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
#FieldValueRatioInfos ⇒ Object
14467 14468 14469 |
# File 'lib/v20180228/models.rb', line 14467 def FieldValueRatioInfos @FieldValueRatioInfos end |
#RequestId ⇒ Object
14467 14468 14469 |
# File 'lib/v20180228/models.rb', line 14467 def RequestId @RequestId end |
#TotalCount ⇒ Object
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 |