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.
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
#Content ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
18033 18034 18035 |
# File 'lib/v20210820/models.rb', line 18033 def Content @Content end |
#Table ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
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 |