# File lib/jira/resource/field.rb, line 61
      def respond_to?(method_name, include_all=false)
        if [method_name.to_s, client.Field.name_to_id(method_name)].any? {|k| attrs.key?(k)}
          true
        else
          super(method_name)
        end
      end