class TencentCloud::Cdb::V20170320::DescribeProxyCustomConfResponse

DescribeProxyCustomConf返回参数结构体

def deserialize(params)

def deserialize(params)
  @Count = params['Count']
  unless params['CustomConf'].nil?
    @CustomConf = CustomConfig.new
    @CustomConf.deserialize(params['CustomConf'])
  end
  unless params['WeightRule'].nil?
    @WeightRule = Rule.new
    @WeightRule.deserialize(params['WeightRule'])
  end
  @RequestId = params['RequestId']
end

def initialize(count=nil, customconf=nil, weightrule=nil, requestid=nil)

def initialize(count=nil, customconf=nil, weightrule=nil, requestid=nil)
  @Count = count
  @CustomConf = customconf
  @WeightRule = weightrule
  @RequestId = requestid
end