Class: TencentCloud::Sqlserver::V20180328::DescribeCrossBackupStatisticalResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeCrossBackupStatisticalResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeCrossBackupStatistical返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeCrossBackupStatisticalResponse
constructor
A new instance of DescribeCrossBackupStatisticalResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeCrossBackupStatisticalResponse
Returns a new instance of DescribeCrossBackupStatisticalResponse.
4153 4154 4155 4156 4157 |
# File 'lib/v20180328/models.rb', line 4153 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4151 4152 4153 |
# File 'lib/v20180328/models.rb', line 4151 def Items @Items end |
#RequestId ⇒ Object
4151 4152 4153 |
# File 'lib/v20180328/models.rb', line 4151 def RequestId @RequestId end |
#TotalCount ⇒ Object
4151 4152 4153 |
# File 'lib/v20180328/models.rb', line 4151 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 |
# File 'lib/v20180328/models.rb', line 4159 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| crosssummarydetailres_tmp = CrossSummaryDetailRes.new crosssummarydetailres_tmp.deserialize(i) @Items << crosssummarydetailres_tmp end end @RequestId = params['RequestId'] end |