com.aliyun.datahub.client.model.GetConnectorDoneTimeResult Maven / Gradle / Ivy
The newest version!
package com.aliyun.datahub.client.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GetConnectorDoneTimeResult extends BaseResult {
@JsonProperty("DoneTime")
private Long doneTime;
@JsonProperty("TimeZone")
private String timeZone;
@JsonProperty("TimeWindow")
private Integer timeWindow;
public Long getDoneTime() {
return doneTime;
}
public void setDoneTime(Long doneTime) {
this.doneTime = doneTime;
}
public String getTimeZone() {
return timeZone;
}
public void setTimeZone(String timeZone) {
this.timeZone = timeZone;
}
public Integer getTimeWindow() {
return timeWindow;
}
public void setTimeWindow(Integer timeWindow) {
this.timeWindow = timeWindow;
}
}