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.



18035
18036
18037
18038
# File 'lib/v20210820/models.rb', line 18035

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

Instance Attribute Details

#ContentObject

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

Parameters:

  • Content:

    诊断信息内容

  • Table:

    诊断结果相关信息列表



18033
18034
18035
# File 'lib/v20210820/models.rb', line 18033

def Content
  @Content
end

#TableObject

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

Parameters:

  • Content:

    诊断信息内容

  • Table:

    诊断结果相关信息列表



18033
18034
18035
# File 'lib/v20210820/models.rb', line 18033

def Table
  @Table
end

Instance Method Details

#deserialize(params) ⇒ Object



18040
18041
18042
18043
18044
18045
18046
18047
18048
18049
# File 'lib/v20210820/models.rb', line 18040

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