Class: TencentCloud::Dayu::V20180709::CreateBoundIPResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dayu::V20180709::CreateBoundIPResponse
- Defined in:
- lib/v20180709/models.rb
Overview
CreateBoundIP返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(success = nil, requestid = nil) ⇒ CreateBoundIPResponse
constructor
A new instance of CreateBoundIPResponse.
Constructor Details
#initialize(success = nil, requestid = nil) ⇒ CreateBoundIPResponse
Returns a new instance of CreateBoundIPResponse.
437 438 439 440 |
# File 'lib/v20180709/models.rb', line 437 def initialize(success=nil, requestid=nil) @Success = success @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
435 436 437 |
# File 'lib/v20180709/models.rb', line 435 def RequestId @RequestId end |
#Success ⇒ Object
435 436 437 |
# File 'lib/v20180709/models.rb', line 435 def Success @Success end |
Instance Method Details
#deserialize(params) ⇒ Object
442 443 444 445 446 447 448 |
# File 'lib/v20180709/models.rb', line 442 def deserialize(params) unless params['Success'].nil? @Success = SuccessCode.new @Success.deserialize(params['Success']) end @RequestId = params['RequestId'] end |