com.aliyun.dts20200101.models.ConfigureSynchronizationJobResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dts20200101 Show documentation
Show all versions of dts20200101 Show documentation
Alibaba Cloud Data Transmission (20200101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dts20200101.models;
import com.aliyun.tea.*;
public class ConfigureSynchronizationJobResponseBody extends TeaModel {
@NameInMap("ErrCode")
public String errCode;
@NameInMap("ErrMessage")
public String errMessage;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public String success;
public static ConfigureSynchronizationJobResponseBody build(java.util.Map map) throws Exception {
ConfigureSynchronizationJobResponseBody self = new ConfigureSynchronizationJobResponseBody();
return TeaModel.build(map, self);
}
public ConfigureSynchronizationJobResponseBody setErrCode(String errCode) {
this.errCode = errCode;
return this;
}
public String getErrCode() {
return this.errCode;
}
public ConfigureSynchronizationJobResponseBody setErrMessage(String errMessage) {
this.errMessage = errMessage;
return this;
}
public String getErrMessage() {
return this.errMessage;
}
public ConfigureSynchronizationJobResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ConfigureSynchronizationJobResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
}