sagamore/sagamore-client-rb

View on GitHub
lib/heartland/client/body.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'hashie'

module HeartlandRetail
  class Client
    ##
    # An indifferent Hash to represent parsed response bodies.
    #
    # @see http://rdoc.info/github/intridea/hashie/Hashie/Mash See the Hashie::Mash docs for usage details
    class Body < ::Hashie::Mash
      disable_warnings if respond_to?(:disable_warnings)
    end
  end
end