class Mindee::Parsing::Common::Page

def to_s

Returns:
  • (String) -
def to_s
  out_str = String.new
  title = "Page #{@page_id}"
  out_str << "#{title}\n"
  out_str << ('-' * title.size)
  out_str << @prediction.to_s
  out_str
end