class TencentCloud::Sqlserver::V20180328::DescribeProductConfigResponse

DescribeProductConfig返回参数结构体

def deserialize(params)

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

def initialize(specinfolist=nil, totalcount=nil, requestid=nil)

def initialize(specinfolist=nil, totalcount=nil, requestid=nil)
  @SpecInfoList = specinfolist
  @TotalCount = totalcount
  @RequestId = requestid
end