class TencentCloud::Cdc::V20201214::DescribeDedicatedClustersResponse

DescribeDedicatedClusters返回参数结构体

def deserialize(params)

def deserialize(params)
  unless params['DedicatedClusterSet'].nil?
    @DedicatedClusterSet = []
    params['DedicatedClusterSet'].each do |i|
      dedicatedcluster_tmp = DedicatedCluster.new
      dedicatedcluster_tmp.deserialize(i)
      @DedicatedClusterSet << dedicatedcluster_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end

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

def initialize(dedicatedclusterset=nil, totalcount=nil, requestid=nil)
  @DedicatedClusterSet = dedicatedclusterset
  @TotalCount = totalcount
  @RequestId = requestid
end