module Jemquarie::Parser::Service

Public Instance Methods

parse_service_date(response) click to toggle source
# File lib/jemquarie/parser/service.rb, line 5
def parse_service_date(response)
  result = generic_request_response(response)
  return result if result[:error]
  Date.parse result["XMLExtract"]["ServiceDate"]
end