com.foresee.api.sdk.model.MeasureDefinitionMQItemQuestionsItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of public-api-sdk Show documentation
Show all versions of public-api-sdk Show documentation
SDK to access Foresee data over Public API
/*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.foresee.api.sdk.model;
import java.util.List;
public class MeasureDefinitionMQItemQuestionsItem {
@com.google.gson.annotations.SerializedName("id")
private String id = null;
@com.google.gson.annotations.SerializedName("name")
private String name = null;
@com.google.gson.annotations.SerializedName("phrase")
private String phrase = null;
@com.google.gson.annotations.SerializedName("label")
private String label = null;
@com.google.gson.annotations.SerializedName("type")
private String type = null;
@com.google.gson.annotations.SerializedName("answers")
private List answers = null;
/**
* Gets id
*
* @return id
**/
public String getId() {
return id;
}
/**
* Sets the value of id.
*
* @param id the new value
*/
public void setId(String id) {
this.id = id;
}
/**
* Gets name
*
* @return name
**/
public String getName() {
return name;
}
/**
* Sets the value of name.
*
* @param name the new value
*/
public void setName(String name) {
this.name = name;
}
/**
* Gets phrase
*
* @return phrase
**/
public String getPhrase() {
return phrase;
}
/**
* Sets the value of phrase.
*
* @param phrase the new value
*/
public void setPhrase(String phrase) {
this.phrase = phrase;
}
/**
* Gets label
*
* @return label
*/
public String getLabel() {
return label;
}
/**
* Sets the label
*
* @param label to set
*/
public void setLabel(String label) {
this.label = label;
}
/**
* Gets type
*
* @return type
**/
public String getType() {
return type;
}
/**
* Sets the value of type.
*
* @param type the new value
*/
public void setType(String type) {
this.type = type;
}
/**
* Gets answers
*
* @return answers
**/
public List getAnswers() {
return answers;
}
/**
* Sets the value of answers.
*
* @param answers the new value
*/
public void setAnswers(List answers) {
this.answers = answers;
}
}