Class: TencentCloud::Wedata::V20210820::DiagnoseRep
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DiagnoseRep
- Defined in:
- lib/v20210820/models.rb
Overview
DiagnoseRep
Instance Attribute Summary collapse
-
#Content ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Table ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(content = nil, table = nil) ⇒ DiagnoseRep
constructor
A new instance of DiagnoseRep.
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
#Content ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
18691 18692 18693 |
# File 'lib/v20210820/models.rb', line 18691 def Content @Content end |
#Table ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
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 |