Class: TencentCloud::Sqlserver::V20180328::DescribeBackupStatisticalResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeBackupStatisticalResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeBackupStatistical返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeBackupStatisticalResponse
constructor
A new instance of DescribeBackupStatisticalResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeBackupStatisticalResponse
Returns a new instance of DescribeBackupStatisticalResponse.
3689 3690 3691 3692 3693 |
# File 'lib/v20180328/models.rb', line 3689 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
3687 3688 3689 |
# File 'lib/v20180328/models.rb', line 3687 def Items @Items end |
#RequestId ⇒ Object
3687 3688 3689 |
# File 'lib/v20180328/models.rb', line 3687 def RequestId @RequestId end |
#TotalCount ⇒ Object
3687 3688 3689 |
# File 'lib/v20180328/models.rb', line 3687 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 |
# File 'lib/v20180328/models.rb', line 3695 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| summarydetailres_tmp = SummaryDetailRes.new summarydetailres_tmp.deserialize(i) @Items << summarydetailres_tmp end end @RequestId = params['RequestId'] end |