Class: TencentCloud::Rce::V20201103::OutputDescribeNameListFrontFixListData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Rce::V20201103::OutputDescribeNameListFrontFixListData
- Defined in:
- lib/v20201103/models.rb
Overview
查询黑白名单出参
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(code = nil, message = nil, value = nil) ⇒ OutputDescribeNameListFrontFixListData
constructor
A new instance of OutputDescribeNameListFrontFixListData.
Constructor Details
#initialize(code = nil, message = nil, value = nil) ⇒ OutputDescribeNameListFrontFixListData
Returns a new instance of OutputDescribeNameListFrontFixListData.
1450 1451 1452 1453 1454 |
# File 'lib/v20201103/models.rb', line 1450 def initialize(code=nil, =nil, value=nil) @Code = code @Message = @Value = value end |
Instance Attribute Details
#Code ⇒ Object
1448 1449 1450 |
# File 'lib/v20201103/models.rb', line 1448 def Code @Code end |
#Message ⇒ Object
1448 1449 1450 |
# File 'lib/v20201103/models.rb', line 1448 def Message @Message end |
#Value ⇒ Object
1448 1449 1450 |
# File 'lib/v20201103/models.rb', line 1448 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
1456 1457 1458 1459 1460 1461 1462 1463 |
# File 'lib/v20201103/models.rb', line 1456 def deserialize(params) @Code = params['Code'] @Message = params['Message'] unless params['Value'].nil? @Value = OutputDescribeNameListInfo.new @Value.deserialize(params['Value']) end end |