com.alipay.api.domain.CustomMetric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 监控共建自定义指标数据结构
*
* @author auto create
* @since 1.0, 2019-03-12 10:43:36
*/
public class CustomMetric extends AlipayObject {
private static final long serialVersionUID = 6315536419298862128L;
/**
* 监控共建自定义指标数据产生的时间戳
*/
@ApiField("biz_time")
private Long bizTime;
/**
* 监控共建自定义指标维度集合
*/
@ApiListField("dimensions")
@ApiField("dimension")
private List dimensions;
/**
* 监控共建自定义指标名称
*/
@ApiField("metric_name")
private String metricName;
/**
* 监控共建自定义指标值
*/
@ApiField("value")
private String value;
public Long getBizTime() {
return this.bizTime;
}
public void setBizTime(Long bizTime) {
this.bizTime = bizTime;
}
public List getDimensions() {
return this.dimensions;
}
public void setDimensions(List dimensions) {
this.dimensions = dimensions;
}
public String getMetricName() {
return this.metricName;
}
public void setMetricName(String metricName) {
this.metricName = metricName;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}