com.foresee.api.sdk.model.MeasuresCollectionItemsItem 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 MeasuresCollectionItemsItem {
@com.google.gson.annotations.SerializedName("id")
private Integer id = null;
@com.google.gson.annotations.SerializedName("name")
private String name = null;
@com.google.gson.annotations.SerializedName("active")
private Boolean active = null;
@com.google.gson.annotations.SerializedName("dateCreated")
private String dateCreated = null;
@com.google.gson.annotations.SerializedName("factType")
private String factType = null;
@com.google.gson.annotations.SerializedName("channel")
private String channel = null;
@com.google.gson.annotations.SerializedName("modelInstanceId")
private String modelInstanceId = null;
@com.google.gson.annotations.SerializedName("links")
private List links = null;
/**
* Gets id
*
* @return id
**/
public Integer getId() {
return id;
}
/**
* Sets the value of id.
*
* @param id the new value
*/
public void setId(Integer 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 active
*
* @return active
**/
public Boolean getActive() {
return active;
}
/**
* Sets the value of active.
*
* @param active the new value
*/
public void setActive(Boolean active) {
this.active = active;
}
/**
* Gets dateCreated
*
* @return dateCreated
**/
public String getDateCreated() {
return dateCreated;
}
/**
* Sets the value of dateCreated.
*
* @param dateCreated the new value
*/
public void setDateCreated(String dateCreated) {
this.dateCreated = dateCreated;
}
/**
* Gets factType
*
* @return factType
**/
public String getFactType() {
return factType;
}
/**
* Sets the value of factType.
*
* @param factType the new value
*/
public void setFactType(String factType) {
this.factType = factType;
}
/**
* Gets channel
*
* @return channel
**/
public String getChannel() {
return channel;
}
/**
* Sets the value of channel.
*
* @param channel the new value
*/
public void setChannel(String channel) {
this.channel = channel;
}
/**
* Gets modelInstanceId
*
* @return modelInstanceId
*/
public String getModelInstanceId() {
return modelInstanceId;
}
/**
* Sets modelInstanceId
*
* @param modelInstanceId to set
*/
public void setModelInstanceId(String modelInstanceId) {
this.modelInstanceId = modelInstanceId;
}
/**
* Gets links
*
* @return links
**/
public List getLinks() {
return links;
}
/**
* Sets the value of links.
*
* @param links the new value
*/
public void setLinks(List links) {
this.links = links;
}
}