com.aliyun.dts20200101.models.SkipPreCheckResponseBody 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 SkipPreCheckResponseBody extends TeaModel {
@NameInMap("Code")
public String code;
@NameInMap("DynamicMessage")
public String dynamicMessage;
@NameInMap("ErrCode")
public String errCode;
@NameInMap("ErrMessage")
public String errMessage;
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
@NameInMap("MigrationJobId")
public String migrationJobId;
@NameInMap("RequestId")
public String requestId;
@NameInMap("ScheduleJobId")
public String scheduleJobId;
@NameInMap("SkipItems")
public String skipItems;
@NameInMap("SkipNames")
public String skipNames;
@NameInMap("Success")
public Boolean success;
public static SkipPreCheckResponseBody build(java.util.Map map) throws Exception {
SkipPreCheckResponseBody self = new SkipPreCheckResponseBody();
return TeaModel.build(map, self);
}
public SkipPreCheckResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public SkipPreCheckResponseBody setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
return this;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public SkipPreCheckResponseBody setErrCode(String errCode) {
this.errCode = errCode;
return this;
}
public String getErrCode() {
return this.errCode;
}
public SkipPreCheckResponseBody setErrMessage(String errMessage) {
this.errMessage = errMessage;
return this;
}
public String getErrMessage() {
return this.errMessage;
}
public SkipPreCheckResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public SkipPreCheckResponseBody setMigrationJobId(String migrationJobId) {
this.migrationJobId = migrationJobId;
return this;
}
public String getMigrationJobId() {
return this.migrationJobId;
}
public SkipPreCheckResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public SkipPreCheckResponseBody setScheduleJobId(String scheduleJobId) {
this.scheduleJobId = scheduleJobId;
return this;
}
public String getScheduleJobId() {
return this.scheduleJobId;
}
public SkipPreCheckResponseBody setSkipItems(String skipItems) {
this.skipItems = skipItems;
return this;
}
public String getSkipItems() {
return this.skipItems;
}
public SkipPreCheckResponseBody setSkipNames(String skipNames) {
this.skipNames = skipNames;
return this;
}
public String getSkipNames() {
return this.skipNames;
}
public SkipPreCheckResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}