com.aliyun.dts20200101.models.ResetSynchronizationJobResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dts20200101.models;
import com.aliyun.tea.*;
public class ResetSynchronizationJobResponseBody extends TeaModel {
/**
* The error code returned if the call failed.
*/
@NameInMap("ErrCode")
public String errCode;
/**
* The error message returned if the call failed.
*/
@NameInMap("ErrMessage")
public String errMessage;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the call was successful.
*/
@NameInMap("Success")
public String success;
public static ResetSynchronizationJobResponseBody build(java.util.Map map) throws Exception {
ResetSynchronizationJobResponseBody self = new ResetSynchronizationJobResponseBody();
return TeaModel.build(map, self);
}
public ResetSynchronizationJobResponseBody setErrCode(String errCode) {
this.errCode = errCode;
return this;
}
public String getErrCode() {
return this.errCode;
}
public ResetSynchronizationJobResponseBody setErrMessage(String errMessage) {
this.errMessage = errMessage;
return this;
}
public String getErrMessage() {
return this.errMessage;
}
public ResetSynchronizationJobResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ResetSynchronizationJobResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
}