Class: TencentCloud::Tcaplusdb::V20190823::UpdateApplyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::UpdateApplyResponse
- Defined in:
- lib/v20190823/models.rb
Overview
UpdateApply返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(applyresults = nil, totalcount = nil, requestid = nil) ⇒ UpdateApplyResponse
constructor
A new instance of UpdateApplyResponse.
Constructor Details
#initialize(applyresults = nil, totalcount = nil, requestid = nil) ⇒ UpdateApplyResponse
Returns a new instance of UpdateApplyResponse.
4750 4751 4752 4753 4754 |
# File 'lib/v20190823/models.rb', line 4750 def initialize(applyresults=nil, totalcount=nil, requestid=nil) @ApplyResults = applyresults @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ApplyResults ⇒ Object
4748 4749 4750 |
# File 'lib/v20190823/models.rb', line 4748 def ApplyResults @ApplyResults end |
#RequestId ⇒ Object
4748 4749 4750 |
# File 'lib/v20190823/models.rb', line 4748 def RequestId @RequestId end |
#TotalCount ⇒ Object
4748 4749 4750 |
# File 'lib/v20190823/models.rb', line 4748 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 |
# File 'lib/v20190823/models.rb', line 4756 def deserialize(params) unless params['ApplyResults'].nil? @ApplyResults = [] params['ApplyResults'].each do |i| applyresult_tmp = ApplyResult.new applyresult_tmp.deserialize(i) @ApplyResults << applyresult_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |