Class: TencentCloud::Sqlserver::V20180328::DescribeInstanceParamRecordsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeInstanceParamRecordsResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeInstanceParamRecords返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeInstanceParamRecordsResponse
constructor
A new instance of DescribeInstanceParamRecordsResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeInstanceParamRecordsResponse
Returns a new instance of DescribeInstanceParamRecordsResponse.
5384 5385 5386 5387 5388 |
# File 'lib/v20180328/models.rb', line 5384 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
5382 5383 5384 |
# File 'lib/v20180328/models.rb', line 5382 def Items @Items end |
#RequestId ⇒ Object
5382 5383 5384 |
# File 'lib/v20180328/models.rb', line 5382 def RequestId @RequestId end |
#TotalCount ⇒ Object
5382 5383 5384 |
# File 'lib/v20180328/models.rb', line 5382 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 |
# File 'lib/v20180328/models.rb', line 5390 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| paramrecord_tmp = ParamRecord.new paramrecord_tmp.deserialize(i) @Items << paramrecord_tmp end end @RequestId = params['RequestId'] end |