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.



18693
18694
18695
18696
# File 'lib/v20210820/models.rb', line 18693

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

Instance Attribute Details

#ContentObject

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

Parameters:

  • Content:

    诊断信息内容

  • Table:

    诊断结果相关信息列表



18691
18692
18693
# File 'lib/v20210820/models.rb', line 18691

def Content
  @Content
end

#TableObject

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

Parameters:

  • Content:

    诊断信息内容

  • Table:

    诊断结果相关信息列表



18691
18692
18693
# File 'lib/v20210820/models.rb', line 18691

def Table
  @Table
end

Instance Method Details

#deserialize(params) ⇒ Object



18698
18699
18700
18701
18702
18703
18704
18705
18706
18707
# File 'lib/v20210820/models.rb', line 18698

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