All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.CustomMetric Maven / Gradle / Ivy

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 = 1392634191187532266L;

	/**
	 * 监控共建自定义指标数据产生的时间戳
	 */
	@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;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy