# File lib/jira/base.rb, line 293
    def respond_to?(method_name, include_all=false)
      if attrs.keys.include? method_name.to_s
        true
      else
        super(method_name)
      end
    end