com.aliyun.datahub.client.model.ListMetaLogResult Maven / Gradle / Ivy
The newest version!
package com.aliyun.datahub.client.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class ListMetaLogResult extends BaseResult {
@JsonProperty("TotalCount")
private int totalCount;
@JsonProperty("MetaLogs")
private List metaLogs;
public int getTotalCount() {
return totalCount;
}
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
public List getMetaLogs() {
return metaLogs;
}
public void setMetaLogs(List metaLogs) {
this.metaLogs = metaLogs;
}
}