Class: TencentCloud::Mrs::V20200910::IndicatorV3

Inherits:
Common::AbstractModel
  • Object
show all
Extended by:
Gem::Deprecate
Defined in:
lib/v20200910/models.rb

Overview

检验报告v3

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#PageObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

    数据在原PDF文件中的第几页



5433
5434
5435
# File 'lib/v20200910/models.rb', line 5433

def Page
  @Page
end

#TableIndicatorsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

    数据在原PDF文件中的第几页



5433
5434
5435
# File 'lib/v20200910/models.rb', line 5433

def TableIndicators
  @TableIndicators
end

#TableIndictorsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

    数据在原PDF文件中的第几页



5433
5434
5435
# File 'lib/v20200910/models.rb', line 5433

def TableIndictors
  @TableIndictors
end

#VersionObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

    数据在原PDF文件中的第几页



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