Class: TencentCloud::Dlc::V20210125::AssignMangedTablePropertiesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::AssignMangedTablePropertiesResponse
- Defined in:
- lib/v20210125/models.rb
Overview
AssignMangedTableProperties返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(properties = nil, requestid = nil) ⇒ AssignMangedTablePropertiesResponse
constructor
A new instance of AssignMangedTablePropertiesResponse.
Constructor Details
#initialize(properties = nil, requestid = nil) ⇒ AssignMangedTablePropertiesResponse
Returns a new instance of AssignMangedTablePropertiesResponse.
654 655 656 657 |
# File 'lib/v20210125/models.rb', line 654 def initialize(properties=nil, requestid=nil) @Properties = properties @RequestId = requestid end |
Instance Attribute Details
#Properties ⇒ Object
652 653 654 |
# File 'lib/v20210125/models.rb', line 652 def Properties @Properties end |
#RequestId ⇒ Object
652 653 654 |
# File 'lib/v20210125/models.rb', line 652 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
659 660 661 662 663 664 665 666 667 668 669 |
# File 'lib/v20210125/models.rb', line 659 def deserialize(params) unless params['Properties'].nil? @Properties = [] params['Properties'].each do |i| property_tmp = Property.new property_tmp.deserialize(i) @Properties << property_tmp end end @RequestId = params['RequestId'] end |