class Lookbook::SearchParamEncoder

def call

def call
  json = JSON.generate(data)
  CGI.escape(json)
end

def initialize(data)

def initialize(data)
  @data = data.to_h
end