com.foresee.api.sdk.model.MeasureDefinition 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 MeasureDefinition {
@com.google.gson.annotations.SerializedName("MQ")
private List MQ = null;
@com.google.gson.annotations.SerializedName("CQ")
private List CQ = null;
@com.google.gson.annotations.SerializedName("CPP")
private List CPP = null;
@com.google.gson.annotations.SerializedName("EPP")
private List EPP = null;
@com.google.gson.annotations.SerializedName("links")
private List links = null;
/**
* Gets MQ
*
* @return MQ
**/
public List getMQ() {
return MQ;
}
/**
* Sets the value of MQ.
*
* @param MQ the new value
*/
public void setMQ(List MQ) {
this.MQ = MQ;
}
/**
* Gets CQ
*
* @return CQ
**/
public List getCQ() {
return CQ;
}
/**
* Sets the value of CQ.
*
* @param CQ the new value
*/
public void setCQ(List CQ) {
this.CQ = CQ;
}
/**
* Gets CPP
*
* @return CPP
**/
public List getCPP() {
return CPP;
}
/**
* Sets the value of CPP.
*
* @param CPP the new value
*/
public void setCPP(List CPP) {
this.CPP = CPP;
}
/**
* Gets EPP
*
* @return EPP
**/
public List getEPP() {
return EPP;
}
/**
* Sets the value of EPP.
*
* @param EPP the new value
*/
public void setEPP(List EPP) {
this.EPP = EPP;
}
/**
* 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;
}
}