Class: TencentCloud::Mrs::V20200910::IndicatorV3
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mrs::V20200910::IndicatorV3
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20200910/models.rb
Overview
检验报告v3
Instance Attribute Summary collapse
-
#Page ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TableIndicators ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TableIndictors ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Version ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tableindictors = nil, version = nil, tableindicators = nil, page = nil) ⇒ IndicatorV3
constructor
A new instance of IndicatorV3.
Constructor Details
#initialize(tableindictors = nil, version = nil, tableindicators = nil, page = nil) ⇒ IndicatorV3
Returns a new instance of IndicatorV3.
5411 5412 5413 5414 5415 5416 |
# File 'lib/v20200910/models.rb', line 5411 def initialize(tableindictors=nil, version=nil, tableindicators=nil, page=nil) @TableIndictors = tableindictors @Version = version @TableIndicators = tableindicators @Page = page end |
Instance Attribute Details
#Page ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5406 5407 5408 |
# File 'lib/v20200910/models.rb', line 5406 def Page @Page end |
#TableIndicators ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5406 5407 5408 |
# File 'lib/v20200910/models.rb', line 5406 def TableIndicators @TableIndicators end |
#TableIndictors ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5406 5407 5408 |
# File 'lib/v20200910/models.rb', line 5406 def TableIndictors @TableIndictors end |
#Version ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5406 5407 5408 |
# File 'lib/v20200910/models.rb', line 5406 def Version @Version end |
Instance Method Details
#deserialize(params) ⇒ Object
5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 |
# File 'lib/v20200910/models.rb', line 5418 def deserialize(params) unless params['TableIndictors'].nil? @TableIndictors = [] params['TableIndictors'].each do |i| tableindicators_tmp = TableIndicators.new tableindicators_tmp.deserialize(i) @TableIndictors << tableindicators_tmp end end @Version = params['Version'] unless params['TableIndicators'].nil? @TableIndicators = [] params['TableIndicators'].each do |i| tableindicators_tmp = TableIndicators.new tableindicators_tmp.deserialize(i) @TableIndicators << tableindicators_tmp end end @Page = params['Page'] end |