class TencentCloud::Cdc::V20201214::DescribeDedicatedClusterTypesResponse

DescribeDedicatedClusterTypes返回参数结构体

def deserialize(params)

def deserialize(params)
  unless params['DedicatedClusterTypeSet'].nil?
    @DedicatedClusterTypeSet = []
    params['DedicatedClusterTypeSet'].each do |i|
      dedicatedclustertype_tmp = DedicatedClusterType.new
      dedicatedclustertype_tmp.deserialize(i)
      @DedicatedClusterTypeSet << dedicatedclustertype_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end

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

def initialize(dedicatedclustertypeset=nil, totalcount=nil, requestid=nil)
  @DedicatedClusterTypeSet = dedicatedclustertypeset
  @TotalCount = totalcount
  @RequestId = requestid
end