com.aliyun.openservices.log.response.GetChartResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.response;
import java.util.Map;
import com.aliyun.openservices.log.common.Chart;
public class GetChartResponse extends Response {
private static final long serialVersionUID = -5285312896064493977L;
private Chart chart;
public GetChartResponse(Map headers, Chart chart) {
super(headers);
this.chart = chart;
}
public Chart getChart() {
return chart;
}
public void setChart(Chart chart) {
this.chart = chart;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy