def process_question_items(content):
    """
    Process response and generate dictionary with questions and URL
    :param content:
    :return:
    """
    questions = list()
    if "items" in content:
        items = content["items"]
        for item in items:
            question = Question()
            question.id = item['question_id']
            question.title = item['title']
            question.link = item['link']
            question.tags = item['tags']
            question.is_answered = item['is_answered']
            question.answer_count = item['answer_count']
            questions.append(question)
    return questions