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.
5438 5439 5440 5441 5442 5443 |
# File 'lib/v20200910/models.rb', line 5438 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,表示取不到有效值。
5433 5434 5435 |
# File 'lib/v20200910/models.rb', line 5433 def Page @Page end |
#TableIndicators ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5433 5434 5435 |
# File 'lib/v20200910/models.rb', line 5433 def TableIndicators @TableIndicators end |
#TableIndictors ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5433 5434 5435 |
# File 'lib/v20200910/models.rb', line 5433 def TableIndictors @TableIndictors end |
#Version ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5433 5434 5435 |
# File 'lib/v20200910/models.rb', line 5433 def Version @Version end |
Instance Method Details
#deserialize(params) ⇒ Object
5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 |
# File 'lib/v20200910/models.rb', line 5445 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 |