package com.bizofficer.apiweb.analytics;

import java.util.List;

public class SectionSetBean {
	
	private String sectionName;
	private String timeSpent;
	private Integer totalQuestion, correctQuestions, incorrectQuestions, unattemptedQuestions;
	private Double sectionTotalScore, percentage, sectionScore;
	private Double correctQuestionsPercentage, incorrectQuestionsPercentage, unattemptedQuestionsPercentage;
	private String detailsIds;
	private List<?> children;
	
	public String getSectionName() {
		return sectionName;
	}
	public void setSectionName(String sectionName) {
		this.sectionName = sectionName;
	}
	public Integer getTotalQuestion() {
		return totalQuestion;
	}
	public void setTotalQuestion(Integer totalQuestion) {
		this.totalQuestion = totalQuestion;
	}	
	public Integer getCorrectQuestions() {
		return correctQuestions;
	}
	public void setCorrectQuestions(Integer correctQuestions) {
		this.correctQuestions = correctQuestions;
	}
	public Integer getIncorrectQuestions() {
		return incorrectQuestions;
	}
	public void setIncorrectQuestions(Integer incorrectQuestions) {
		this.incorrectQuestions = incorrectQuestions;
	}
	public Integer getUnattemptedQuestions() {
		return unattemptedQuestions;
	}
	public void setUnattemptedQuestions(Integer unattemptedQuestions) {
		this.unattemptedQuestions = unattemptedQuestions;
	}
	public Double getSectionTotalScore() {
		return sectionTotalScore;
	}
	public void setSectionTotalScore(Double sectionTotalScore) {
		this.sectionTotalScore = sectionTotalScore;
	}
	public String getDetailsIds() {
		return detailsIds;
	}
	public void setDetailsIds(String detailsIds) {
		this.detailsIds = detailsIds;
	}
	public String getTimeSpent() {
		return timeSpent;
	}
	public void setTimeSpent(String timeSpent) {
		this.timeSpent = timeSpent;
	}
	public Double getPercentage() {
		return percentage;
	}
	public void setPercentage(Double percentage) {
		this.percentage = percentage;
	}
	public List<?> getChildren() {
		return children;
	}
	public void setChildren(List<?> children) {
		this.children = children;
	}
	public Double getCorrectQuestionsPercentage() {
		return correctQuestionsPercentage;
	}
	public void setCorrectQuestionsPercentage(Double correctQuestionsPercentage) {
		this.correctQuestionsPercentage = correctQuestionsPercentage;
	}
	public Double getIncorrectQuestionsPercentage() {
		return incorrectQuestionsPercentage;
	}
	public void setIncorrectQuestionsPercentage(Double incorrectQuestionsPercentage) {
		this.incorrectQuestionsPercentage = incorrectQuestionsPercentage;
	}
	public Double getUnattemptedQuestionsPercentage() {
		return unattemptedQuestionsPercentage;
	}
	public void setUnattemptedQuestionsPercentage(Double unattemptedQuestionsPercentage) {
		this.unattemptedQuestionsPercentage = unattemptedQuestionsPercentage;
	}
	public Double getSectionScore() {
		return sectionScore;
	}
	public void setSectionScore(Double sectionScore) {
		this.sectionScore = sectionScore;
	}



















}








