class TencentCloud::Ckafka::V20190819::GroupResponse

DescribeGroup的返回

def deserialize(params)

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['GroupList'].nil?
    @GroupList = []
    params['GroupList'].each do |i|
      describegroup_tmp = DescribeGroup.new
      describegroup_tmp.deserialize(i)
      @GroupList << describegroup_tmp
    end
  end
end

def initialize(totalcount=nil, grouplist=nil)

def initialize(totalcount=nil, grouplist=nil)
  @TotalCount = totalcount
  @GroupList = grouplist
end