com.foresee.api.sdk.model.MeasuresCollection 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 MeasuresCollection {
@com.google.gson.annotations.SerializedName("items")
private List items = null;
@com.google.gson.annotations.SerializedName("hasMore")
private Boolean hasMore = null;
@com.google.gson.annotations.SerializedName("links")
private List links = null;
/**
* Gets items
*
* @return items
**/
public List getItems() {
return items;
}
/**
* Sets the value of items.
*
* @param items the new value
*/
public void setItems(List items) {
this.items = items;
}
/**
* Gets hasMore
*
* @return hasMore
**/
public Boolean getHasMore() {
return hasMore;
}
/**
* Sets the value of hasMore.
*
* @param hasMore the new value
*/
public void setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
}
/**
* 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;
}
}