com.mediamath.terminalone.models.reporting.meta.MetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of t1-java Show documentation
Show all versions of t1-java Show documentation
Java SDK to enable use of MediaMath APIs
/*******************************************************************************
* Copyright 2016 MediaMath
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.mediamath.terminalone.models.reporting.meta;
import java.util.List;
public class MetaData {
private String Description;
private String Name;
private String Type;
private String URI_Data;
private String URI_Meta;
private String Version;
private String currency;
private String data_retention;
private MetaStructure structure = new MetaStructure();
private String time_aggregations;
private List time_rollups;
private List time_windows;
private String timezone;
public String getDescription() {
return Description;
}
public void setDescription(String description) {
Description = description;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getURIData() {
return URI_Data;
}
public void setURIData(String uRI_Data) {
URI_Data = uRI_Data;
}
public String getURIMeta() {
return URI_Meta;
}
public void setURIMeta(String uRI_Meta) {
URI_Meta = uRI_Meta;
}
public String getVersion() {
return Version;
}
public void setVersion(String version) {
Version = version;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public String getDataRetention() {
return data_retention;
}
public void setDataRetention(String data_retention) {
this.data_retention = data_retention;
}
public MetaStructure getStructure() {
return structure;
}
public void setStructure(MetaStructure structure) {
this.structure = structure;
}
public String getTimeAggregations() {
return time_aggregations;
}
public void setTimeAggregations(String time_aggregations) {
this.time_aggregations = time_aggregations;
}
public List getTimeRollups() {
return time_rollups;
}
public void setTimeRollups(List time_rollups) {
this.time_rollups = time_rollups;
}
public List getTimeWindows() {
return time_windows;
}
public void setTimeWindows(List time_windows) {
this.time_windows = time_windows;
}
public String getTimezone() {
return timezone;
}
public void setTimezone(String timezone) {
this.timezone = timezone;
}
}