Class: TencentCloud::Sqlserver::V20180328::DescribeProductConfigResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeProductConfigResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeProductConfig返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(specinfolist = nil, totalcount = nil, requestid = nil) ⇒ DescribeProductConfigResponse
constructor
A new instance of DescribeProductConfigResponse.
Constructor Details
#initialize(specinfolist = nil, totalcount = nil, requestid = nil) ⇒ DescribeProductConfigResponse
Returns a new instance of DescribeProductConfigResponse.
5984 5985 5986 5987 5988 |
# File 'lib/v20180328/models.rb', line 5984 def initialize(specinfolist=nil, totalcount=nil, requestid=nil) @SpecInfoList = specinfolist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
5982 5983 5984 |
# File 'lib/v20180328/models.rb', line 5982 def RequestId @RequestId end |
#SpecInfoList ⇒ Object
5982 5983 5984 |
# File 'lib/v20180328/models.rb', line 5982 def SpecInfoList @SpecInfoList end |
#TotalCount ⇒ Object
5982 5983 5984 |
# File 'lib/v20180328/models.rb', line 5982 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 |
# File 'lib/v20180328/models.rb', line 5990 def deserialize(params) unless params['SpecInfoList'].nil? @SpecInfoList = [] params['SpecInfoList'].each do |i| specinfo_tmp = SpecInfo.new specinfo_tmp.deserialize(i) @SpecInfoList << specinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |