Class: TencentCloud::Wedata::V20210820::DiagnoseRep

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210820/models.rb

Overview

DiagnoseRep

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(content = nil, table = nil) ⇒ DiagnoseRep

Returns a new instance of DiagnoseRep.



12923
12924
12925
12926
# File 'lib/v20210820/models.rb', line 12923

def initialize(content=nil, table=nil)
  @Content = content
  @Table = table
end

Instance Attribute Details

#ContentObject

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

Parameters:

  • Content:

    诊断信息内容

  • Table:

    诊断结果相关信息列表



12921
12922
12923
# File 'lib/v20210820/models.rb', line 12921

def Content
  @Content
end

#TableObject

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

Parameters:

  • Content:

    诊断信息内容

  • Table:

    诊断结果相关信息列表



12921
12922
12923
# File 'lib/v20210820/models.rb', line 12921

def Table
  @Table
end

Instance Method Details

#deserialize(params) ⇒ Object



12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
# File 'lib/v20210820/models.rb', line 12928

def deserialize(params)
  unless params['Content'].nil?
    @Content = Content.new
    @Content.deserialize(params['Content'])
  end
  unless params['Table'].nil?
    @Table = Table.new
    @Table.deserialize(params['Table'])
  end
end