com.antgroup.antchain.openapi.rms.models.XTableData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class XTableData extends TeaModel {
//
@NameInMap("tags")
public java.util.List tags;
//
@NameInMap("metric_values")
public java.util.List metricValues;
public static XTableData build(java.util.Map map) throws Exception {
XTableData self = new XTableData();
return TeaModel.build(map, self);
}
public XTableData setTags(java.util.List tags) {
this.tags = tags;
return this;
}
public java.util.List getTags() {
return this.tags;
}
public XTableData setMetricValues(java.util.List metricValues) {
this.metricValues = metricValues;
return this;
}
public java.util.List getMetricValues() {
return this.metricValues;
}
}