All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dms_enterprise20181101.models.DeleteTaskFlowResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;

import com.aliyun.tea.*;

public class DeleteTaskFlowResponseBody extends TeaModel {
    /**
     * 

The error code returned if the request fails.

* * example: *

403

*/ @NameInMap("ErrorCode") public String errorCode; /** *

The error message returned if the request fails.

* * example: *

UnknownError

*/ @NameInMap("ErrorMessage") public String errorMessage; /** *

The ID of the request.

* * example: *

9AFE13F6-A4FD-581B-BFDE-B63B1CDC2336

*/ @NameInMap("RequestId") public String requestId; /** *

Indicates whether the request is successful. Valid values:

*
    *
  • true: The request is successful.
  • *
  • false: The request fails.
  • *
* * example: *

true

*/ @NameInMap("Success") public Boolean success; public static DeleteTaskFlowResponseBody build(java.util.Map map) throws Exception { DeleteTaskFlowResponseBody self = new DeleteTaskFlowResponseBody(); return TeaModel.build(map, self); } public DeleteTaskFlowResponseBody setErrorCode(String errorCode) { this.errorCode = errorCode; return this; } public String getErrorCode() { return this.errorCode; } public DeleteTaskFlowResponseBody setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } public String getErrorMessage() { return this.errorMessage; } public DeleteTaskFlowResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DeleteTaskFlowResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy