Class: TencentCloud::Apigateway::V20180808::DescribeIPStrategyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::DescribeIPStrategyResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeIPStrategy返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, requestid = nil) ⇒ DescribeIPStrategyResponse
constructor
A new instance of DescribeIPStrategyResponse.
Constructor Details
#initialize(result = nil, requestid = nil) ⇒ DescribeIPStrategyResponse
Returns a new instance of DescribeIPStrategyResponse.
4562 4563 4564 4565 |
# File 'lib/v20180808/models.rb', line 4562 def initialize(result=nil, requestid=nil) @Result = result @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4560 4561 4562 |
# File 'lib/v20180808/models.rb', line 4560 def RequestId @RequestId end |
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4560 4561 4562 |
# File 'lib/v20180808/models.rb', line 4560 def Result @Result end |
Instance Method Details
#deserialize(params) ⇒ Object
4567 4568 4569 4570 4571 4572 4573 |
# File 'lib/v20180808/models.rb', line 4567 def deserialize(params) unless params['Result'].nil? @Result = IPStrategy.new @Result.deserialize(params['Result']) end @RequestId = params['RequestId'] end |