Class: TencentCloud::Dayu::V20180709::ModifyCCIpAllowDenyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dayu::V20180709::ModifyCCIpAllowDenyResponse
- Defined in:
- lib/v20180709/models.rb
Overview
ModifyCCIpAllowDeny返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(success = nil, requestid = nil) ⇒ ModifyCCIpAllowDenyResponse
constructor
A new instance of ModifyCCIpAllowDenyResponse.
Constructor Details
#initialize(success = nil, requestid = nil) ⇒ ModifyCCIpAllowDenyResponse
Returns a new instance of ModifyCCIpAllowDenyResponse.
6936 6937 6938 6939 |
# File 'lib/v20180709/models.rb', line 6936 def initialize(success=nil, requestid=nil) @Success = success @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
6934 6935 6936 |
# File 'lib/v20180709/models.rb', line 6934 def RequestId @RequestId end |
#Success ⇒ Object
6934 6935 6936 |
# File 'lib/v20180709/models.rb', line 6934 def Success @Success end |
Instance Method Details
#deserialize(params) ⇒ Object
6941 6942 6943 6944 6945 6946 6947 |
# File 'lib/v20180709/models.rb', line 6941 def deserialize(params) unless params['Success'].nil? @Success = SuccessCode.new @Success.deserialize(params['Success']) end @RequestId = params['RequestId'] end |