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.
4875 4876 4877 4878 4879 |
# File 'lib/v20190823/models.rb', line 4875 def initialize(applyresults=nil, totalcount=nil, requestid=nil) @ApplyResults = applyresults @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ApplyResults ⇒ Object
4873 4874 4875 |
# File 'lib/v20190823/models.rb', line 4873 def ApplyResults @ApplyResults end |
#RequestId ⇒ Object
4873 4874 4875 |
# File 'lib/v20190823/models.rb', line 4873 def RequestId @RequestId end |
#TotalCount ⇒ Object
4873 4874 4875 |
# File 'lib/v20190823/models.rb', line 4873 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 |
# File 'lib/v20190823/models.rb', line 4881 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 |