com.foresee.api.sdk.model.MeasureDataItemsItem 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.*;
public class MeasureDataItemsItem {
@com.google.gson.annotations.SerializedName("id")
private String id = null;
@com.google.gson.annotations.SerializedName("responseTime")
private String responseTime = null;
@com.google.gson.annotations.SerializedName("latentScores")
private List latentScores = null;
@com.google.gson.annotations.SerializedName("responses")
private List responses = 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 responseTime
*
* @return responseTime
**/
public String getResponseTime() {
return responseTime;
}
/**
* Sets the value of responseTime.
*
* @param responseTime the new value
*/
public void setResponseTime(String responseTime) {
this.responseTime = responseTime;
}
/**
* Gets latentScores
*
* @return latentScores
**/
public List getLatentScores() {
return latentScores;
}
/**
* Sets the value of latentScores.
*
* @param latentScores the new value
*/
public void setLatentScores(List latentScores) {
this.latentScores = latentScores;
}
/**
* Gets responses
*
* @return responses
**/
public List getResponses() {
return responses;
}
/**
* Sets the value of responses.
*
* @param responses the new value
*/
public void setResponses(List responses) {
this.responses = responses;
}
}