Class: TencentCloud::Rce::V20201103::OutputDescribeNameListDetailFront
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Rce::V20201103::OutputDescribeNameListDetailFront
- Defined in:
- lib/v20201103/models.rb
Overview
查询列表详情出参
Instance Attribute Summary collapse
-
#Code ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Value ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(code = nil, message = nil, value = nil) ⇒ OutputDescribeNameListDetailFront
constructor
A new instance of OutputDescribeNameListDetailFront.
Constructor Details
#initialize(code = nil, message = nil, value = nil) ⇒ OutputDescribeNameListDetailFront
Returns a new instance of OutputDescribeNameListDetailFront.
1367 1368 1369 1370 1371 |
# File 'lib/v20201103/models.rb', line 1367 def initialize(code=nil, =nil, value=nil) @Code = code @Message = @Value = value end |
Instance Attribute Details
#Code ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1365 1366 1367 |
# File 'lib/v20201103/models.rb', line 1365 def Code @Code end |
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1365 1366 1367 |
# File 'lib/v20201103/models.rb', line 1365 def Message @Message end |
#Value ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1365 1366 1367 |
# File 'lib/v20201103/models.rb', line 1365 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'lib/v20201103/models.rb', line 1373 def deserialize(params) @Code = params['Code'] @Message = params['Message'] unless params['Value'].nil? @Value = OutputDescribeNameListDetail.new @Value.deserialize(params['Value']) end end |