iZettle/api-model

View on GitHub
lib/api_model/builder/hash.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApiModel
  module Builder
    class Hash

      def build(response)
        response if response.is_a?(Hash)
      end

    end
  end
end