com.aliyun.datalake20200710.models.RunMigrationWorkflowResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class RunMigrationWorkflowResponseBody extends TeaModel {
@NameInMap("Data")
public String data;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public Boolean success;
public static RunMigrationWorkflowResponseBody build(java.util.Map map) throws Exception {
RunMigrationWorkflowResponseBody self = new RunMigrationWorkflowResponseBody();
return TeaModel.build(map, self);
}
public RunMigrationWorkflowResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public RunMigrationWorkflowResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public RunMigrationWorkflowResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}