class TencentCloud::Trp::V20210515::DescribeCodeBatchsResponse

DescribeCodeBatchs返回参数结构体

def deserialize(params)

def deserialize(params)
  unless params['CodeBatchs'].nil?
    @CodeBatchs = []
    params['CodeBatchs'].each do |i|
      codebatch_tmp = CodeBatch.new
      codebatch_tmp.deserialize(i)
      @CodeBatchs << codebatch_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end

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

def initialize(codebatchs=nil, totalcount=nil, requestid=nil)
  @CodeBatchs = codebatchs
  @TotalCount = totalcount
  @RequestId = requestid
end