module Ebanx
  module Command
    class Print < Command
      def initialize(params)
        @params         = params
        @request_method = :get
        @request_action = 'print'
        @response_type  = 'text/html'
      end

      def validate
        validate_presence :hash
      end
    end
  end
end