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.



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

#PageObject

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

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

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



5406
5407
5408
# File 'lib/v20200910/models.rb', line 5406

def Page
  @Page
end

#TableIndicatorsObject

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

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

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



5406
5407
5408
# File 'lib/v20200910/models.rb', line 5406

def TableIndicators
  @TableIndicators
end

#TableIndictorsObject

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

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

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



5406
5407
5408
# File 'lib/v20200910/models.rb', line 5406

def TableIndictors
  @TableIndictors
end

#VersionObject

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

Parameters:

  • TableIndictors:

    检验报告V3结论

  • Version:

    版本号

  • TableIndicators:

    检验报告V3结论

  • Page:

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



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