com.aliyun.dts20200101.models.ModifyDtsJobPasswordResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dts20200101.models;
import com.aliyun.tea.*;
public class ModifyDtsJobPasswordResponseBody extends TeaModel {
/**
* The error code. This parameter will be removed in the future.
*/
@NameInMap("Code")
public String code;
/**
* The dynamic part in the error message. This parameter is used to replace the **%s** variable in the **ErrMessage** parameter.
*
* > If the return value of the **ErrMessage** parameter is **The Value of Input Parameter %s is not valid** and the return value of the **DynamicMessage** parameter is **DtsJobId**, the specified **DtsJobId** parameter is invalid.
*/
@NameInMap("DynamicMessage")
public String dynamicMessage;
/**
* 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 HTTP status code.
*/
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the call was successful.
*/
@NameInMap("Success")
public Boolean success;
public static ModifyDtsJobPasswordResponseBody build(java.util.Map map) throws Exception {
ModifyDtsJobPasswordResponseBody self = new ModifyDtsJobPasswordResponseBody();
return TeaModel.build(map, self);
}
public ModifyDtsJobPasswordResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public ModifyDtsJobPasswordResponseBody setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
return this;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public ModifyDtsJobPasswordResponseBody setErrCode(String errCode) {
this.errCode = errCode;
return this;
}
public String getErrCode() {
return this.errCode;
}
public ModifyDtsJobPasswordResponseBody setErrMessage(String errMessage) {
this.errMessage = errMessage;
return this;
}
public String getErrMessage() {
return this.errMessage;
}
public ModifyDtsJobPasswordResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public ModifyDtsJobPasswordResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ModifyDtsJobPasswordResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}